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

Function le64enc

freebsd/sys/endian.h:198–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198static __inline void
199le64enc(void *pp, uint64_t u)
200{
201 uint8_t *p = (uint8_t *)pp;
202
203 le32enc(p, (uint32_t)(u & 0xffffffffU));
204 le32enc(p + 4, (uint32_t)(u >> 32));
205}
206
207#endif /* _SYS_ENDIAN_H_ */

Callers 2

SipHash_FinalFunction · 0.85
skein_port.hFile · 0.85

Calls 1

le32encFunction · 0.85

Tested by

no test coverage detected