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

Function le32dec

freebsd/sys/endian.h:133–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133static __inline uint32_t
134le32dec(const void *pp)
135{
136 uint8_t const *p = (uint8_t const *)pp;
137
138 return (((unsigned)p[3] << 24) | (p[2] << 16) | (p[1] << 8) | p[0]);
139}
140
141static __inline uint64_t
142le64dec(const void *pp)

Callers 15

ieee80211_parse_vhtcapFunction · 0.85
iswpaouiFunction · 0.85
iswmeouiFunction · 0.85
iswmeparamFunction · 0.85
iswmeinfoFunction · 0.85
isatherosouiFunction · 0.85
istdmaouiFunction · 0.85
ishtcapouiFunction · 0.85
ishtinfoouiFunction · 0.85
wpa_cipherFunction · 0.85
wpa_keymgmtFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected