MCPcopy Create free account
hub / github.com/ElementsProject/elements / PutFixed32

Function PutFixed32

src/leveldb/util/coding.cc:9–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7namespace leveldb {
8
9void PutFixed32(std::string* dst, uint32_t value) {
10 char buf[sizeof(value)];
11 EncodeFixed32(buf, value);
12 dst->append(buf, sizeof(buf));
13}
14
15void PutFixed64(std::string* dst, uint64_t value) {
16 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