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

Function le32enc

freebsd/sys/endian.h:187–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187static __inline void
188le32enc(void *pp, uint32_t u)
189{
190 uint8_t *p = (uint8_t *)pp;
191
192 p[0] = u & 0xff;
193 p[1] = (u >> 8) & 0xff;
194 p[2] = (u >> 16) & 0xff;
195 p[3] = (u >> 24) & 0xff;
196}
197
198static __inline void
199le64enc(void *pp, uint64_t u)

Callers 3

ieee80211_output.cFile · 0.85
le64encFunction · 0.85
le_uuid_encFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected