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

Function DecodeFixed32

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

Source from the content-addressed store, hash-verified

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
92template <typename T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected