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

Function be32enc

freebsd/sys/endian.h:158–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156}
157
158static __inline void
159be32enc(void *pp, uint32_t u)
160{
161 uint8_t *p = (uint8_t *)pp;
162
163 p[0] = (u >> 24) & 0xff;
164 p[1] = (u >> 16) & 0xff;
165 p[2] = (u >> 8) & 0xff;
166 p[3] = u & 0xff;
167}
168
169static __inline void
170be64enc(void *pp, uint64_t u)

Callers 8

be32enc_vectFunction · 0.85
be32enc_vectFunction · 0.85
cbc_mac_startFunction · 0.85
be64encFunction · 0.85
be_uuid_encFunction · 0.85
ng_pptpgre_xmitFunction · 0.85
esp_inputFunction · 0.85
esp_outputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected