MCPcopy Create free account
hub / github.com/ByConity/ByConity / PutFixed32

Function PutFixed32

src/Common/Coding.cpp:47–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45}
46
47void PutFixed32(std::string * dst, uint32_t value)
48{
49 char buf[sizeof(value)];
50 EncodeFixed32(buf, value);
51 dst->append(buf, sizeof(buf));
52}
53
54void PutFixed64(std::string * dst, uint64_t value)
55{

Callers 5

dumpMethod · 0.85
FinishMethod · 0.85
EncodeToMethod · 0.85
FinishMethod · 0.85

Calls 2

EncodeFixed32Function · 0.85
appendMethod · 0.45

Tested by

no test coverage detected