Searched defs:SWAP_BYTES_IN_WORD (Results 1 - 3 of 3) sorted by relevance

/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dinet_chksum.h47 #define SWAP_BYTES_IN_WORD(w) (((w) & 0xff) << 8) | (((w) & 0xff00) >> 8) macro
/barrelfish-2018-10-04/lib/arranet/
H A Dinet_chksum.h47 #define SWAP_BYTES_IN_WORD(w) LWIP_PLATFORM_HTONS(w) macro
50 #define SWAP_BYTES_IN_WORD(w) (((w) & 0xff) << 8) | (((w) & 0xff00) >> 8) macro
/barrelfish-2018-10-04/lib/lwip/src/core/ipv4/
H A Dinet_chksum.c71 #define SWAP_BYTES_IN_WORD(w) LWIP_PLATFORM_HTONS(w) macro
74 #define SWAP_BYTES_IN_WORD(w) ((w & 0xff) << 8) | ((w & 0xff00) >> 8) macro
[all...]

Completed in 51 milliseconds