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

Function PutFixed32

src/leveldb/util/coding.cc:35–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35void PutFixed32(std::string* dst, uint32_t value) {
36 char buf[sizeof(value)];
37 EncodeFixed32(buf, value);
38 dst->append(buf, sizeof(buf));
39}
40
41void PutFixed64(std::string* dst, uint64_t value) {
42 char buf[sizeof(value)];

Callers 6

FinishMethod · 0.85
CreateFilterMethod · 0.85
FinishMethod · 0.85
EncodeToMethod · 0.85
TESTFunction · 0.85
EncodeKeyFunction · 0.85

Calls 1

EncodeFixed32Function · 0.85

Tested by 3

CreateFilterMethod · 0.68
TESTFunction · 0.68
EncodeKeyFunction · 0.68