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

Function le16dec

freebsd/sys/endian.h:125–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125static __inline uint16_t
126le16dec(const void *pp)
127{
128 uint8_t const *p = (uint8_t const *)pp;
129
130 return ((p[1] << 8) | p[0]);
131}
132
133static __inline uint32_t
134le32dec(const void *pp)

Callers 15

ieee80211_parse_htcapFunction · 0.85
htinfo_parseFunction · 0.85
ht_recv_action_ba_delbaFunction · 0.85
ieee80211_parse_athFunction · 0.85
ieee80211_parse_vhtcapFunction · 0.85
compare_quiet_ieFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected