Home | History | Annotate | Download | only in common

Lines Matching refs:RAW

36 #define _SWAP_1(SET,RAW) SET (RAW)
40 #define _SWAP_2(SET,RAW) SET htons (RAW)
44 #define _SWAP_2(SET,RAW) SET (((RAW) >> 8) | ((RAW) << 8))
48 #define _SWAP_4(SET,RAW) SET htonl (RAW)
52 #define _SWAP_4(SET,RAW) SET (((RAW) << 24) | (((RAW) & 0xff00) << 8) | (((RAW) & 0xff0000) >> 8) | ((RAW) >> 24))
56 #define _SWAP_8(SET,RAW) \
58 in.dword = RAW; \
65 #define _SWAP_16(SET,RAW) \
67 in.word = (RAW); \