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

Function EncodeFixed16

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

Source from the content-addressed store, hash-verified

54
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

Callers 1

EncodeMethod · 0.85

Calls 1

EncodeFixedFunction · 0.85

Tested by

no test coverage detected