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

Function DecodeFixed16

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

Source from the content-addressed store, hash-verified

86
87inline uint8_t DecodeFixed8(const char *ptr) { return DecodeFixed<uint8_t>(ptr); }
88inline uint16_t DecodeFixed16(const char *ptr) { return DecodeFixed<uint16_t>(ptr); }
89inline uint32_t DecodeFixed32(const char *ptr) { return DecodeFixed<uint32_t>(ptr); }
90inline uint64_t DecodeFixed64(const char *ptr) { return DecodeFixed<uint64_t>(ptr); }
91

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected