Searched defs:ntohs (Results 1 – 4 of 4) sorted by relevance
24 #define ntohs(n) (n) macro
48 #define ntohs(x) htons(x) macro
59 #define ntohs(x) __builtin_bswap16(x) macro
33 # define ntohs(x) ( (((x) << 8) & 0xff00) | (((x) >> 8) & 255) ) macro