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

Function be32dec

freebsd/sys/endian.h:109–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109static __inline uint32_t
110be32dec(const void *pp)
111{
112 uint8_t const *p = (uint8_t const *)pp;
113
114 return (((unsigned)p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]);
115}
116
117static __inline uint64_t
118be64dec(const void *pp)

Callers 6

be32dec_vectFunction · 0.85
be32dec_vectFunction · 0.85
be64decFunction · 0.85
be_uuid_decFunction · 0.85
ng_pptpgre_rcvdata_lowerFunction · 0.85
ng_ppp_mp_recvFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected