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

Function PutFixed64

src/leveldb/util/coding.cc:15–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13}
14
15void PutFixed64(std::string* dst, uint64_t value) {
16 char buf[sizeof(value)];
17 EncodeFixed64(buf, value);
18 dst->append(buf, sizeof(buf));
19}
20
21char* EncodeVarint32(char* dst, uint32_t v) {
22 // Operate on characters as unsigneds

Callers 4

TESTFunction · 0.85
AppendInternalKeyFunction · 0.85
FindShortestSeparatorMethod · 0.85
FindShortSuccessorMethod · 0.85

Calls 1

EncodeFixed64Function · 0.85

Tested by 1

TESTFunction · 0.68