Lines Matching refs:x
68 #define __ntohl(x) ((uint32_t)(x)) argument
69 #define __ntohs(x) ((uint16_t)(x)) argument
70 #define __htonl(x) ((uint32_t)(x)) argument
71 #define __htons(x) ((uint16_t)(x)) argument
75 #define __ntohl(x) (__bswap32(x)) argument
76 #define __ntohs(x) (__bswap16(x)) argument
77 #define __htonl(x) (__bswap32(x)) argument
78 #define __htons(x) (__bswap16(x)) argument
121 #define __bswap32_constant(x) \ argument
122 ((((x) & 0xff000000U) >> 24) | \
123 (((x) & 0x00ff0000U) >> 8) | \
124 (((x) & 0x0000ff00U) << 8) | \
125 (((x) & 0x000000ffU) << 24))
127 #define __bswap16_constant(x) \ argument
128 ((((x) & 0xff00) >> 8) | \
129 (((x) & 0x00ff) << 8))
131 #define __bswap16(x) \ argument
132 ((uint16_t)(__builtin_constant_p(x) ? \
133 __bswap16_constant(x) : \
134 __bswap16_var(x)))
136 #define __bswap32(x) \ argument
137 ((uint32_t)(__builtin_constant_p(x) ? \
138 __bswap32_constant(x) : \
139 __bswap32_var(x)))
142 #define __bswap16(x) __bswap16_var(x) argument
143 #define __bswap32(x) __bswap32_var(x) argument