MCPcopy 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
54void 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
61char * EncodeVarint32(char * dst, uint32_t v)
62{

Callers 2

Calls 2

EncodeFixed64Function · 0.85
appendMethod · 0.45

Tested by

no test coverage detected