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

Function EncodeFixed32

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

Source from the content-addressed store, hash-verified

55inline char *EncodeFixed8(char *buf, uint8_t value) { return EncodeFixed(buf, value); }
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) {

Callers 3

EncodeMethod · 0.85
ExpireMethod · 0.85
EncodeMethod · 0.85

Calls 1

EncodeFixedFunction · 0.85

Tested by

no test coverage detected