MCPcopy Create free account
hub / github.com/apache/kvrocks / EncodeFixed64

Function EncodeFixed64

src/common/encoding.h:58–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56inline char *EncodeFixed16(char *buf, uint16_t value) { return EncodeFixed(buf, value); }
57inline char *EncodeFixed32(char *buf, uint32_t value) { return EncodeFixed(buf, value); }
58inline char *EncodeFixed64(char *buf, uint64_t value) { return EncodeFixed(buf, value); }
59
60inline char *EncodeBuffer(char *buf, rocksdb::Slice value) {
61 __builtin_memcpy(buf, value.data(), value.size());

Callers 3

ExpireMethod · 0.85
EncodeMethod · 0.85
EncodeDoubleFunction · 0.85

Calls 1

EncodeFixedFunction · 0.85

Tested by

no test coverage detected