MCPcopy Create free account
hub / github.com/F-Stack/f-stack / le64dec

Function le64dec

freebsd/sys/endian.h:141–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141static __inline uint64_t
142le64dec(const void *pp)
143{
144 uint8_t const *p = (uint8_t const *)pp;
145
146 return (((uint64_t)le32dec(p + 4) << 32) | le32dec(p));
147}
148
149static __inline void
150be16enc(void *pp, uint16_t u)

Callers 7

nvpair_unpack_numberFunction · 0.85
nvpair_unpack_descriptorFunction · 0.85
SipHash_SetKeyFunction · 0.85
SipHash_UpdateFunction · 0.85
skein_port.hFile · 0.85

Calls 1

le32decFunction · 0.85

Tested by

no test coverage detected