MCPcopy Create free account
hub / github.com/baidu/tera / DecodeFixed64

Function DecodeFixed64

src/io/coding.h:20–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20inline uint64_t DecodeFixed64(const char* ptr) {
21 uint64_t result;
22 memcpy(&result, ptr, sizeof(result));
23 return result;
24}
25
26inline void EncodeFixed64(char* buf, uint64_t value) { memcpy(buf, &value, sizeof(value)); }
27

Callers 2

CompareMethod · 0.70
ParseKeySliceFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected