Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ByConity/ByConity
/ PutFixed64
Function
PutFixed64
src/Common/Coding.cpp:54–59 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
52
}
53
54
void PutFixed64(std::string * dst, uint64_t value)
55
{
56
char buf[sizeof(value)];
57
EncodeFixed64(buf, value);
58
dst->append(buf, sizeof(buf));
59
}
60
61
char * EncodeVarint32(char * dst, uint32_t v)
62
{
Callers
2
writeToTempUniqueKeyIndex
Method · 0.85
writeFinalUniqueKeyIndexFile
Method · 0.85
Calls
2
EncodeFixed64
Function · 0.85
append
Method · 0.45
Tested by
no test coverage detected