Lines Matching refs:x
110 #define ntohl(x) ((__uint32_t)(x))
111 #define ntohs(x) ((__uint16_t)(x))
112 #define htonl(x) ((__uint32_t)(x))
113 #define htons(x) ((__uint16_t)(x))
117 #define ntohll(x) ((__uint64_t)(x))
118 #define htonll(x) ((__uint64_t)(x))
120 #define NTOHL(x) (x)
121 #define NTOHS(x) (x)
122 #define NTOHLL(x) (x)
123 #define HTONL(x) (x)
124 #define HTONS(x) (x)
125 #define HTONLL(x) (x)
133 #define ntohs(x) __DARWIN_OSSwapInt16(x)
134 #define htons(x) __DARWIN_OSSwapInt16(x)
136 #define ntohl(x) __DARWIN_OSSwapInt32(x)
137 #define htonl(x) __DARWIN_OSSwapInt32(x)
139 #define ntohs(x) ((__uint16_t)__builtin_bswap16((__uint16_t)(x)))
140 #define htons(x) ((__uint16_t)__builtin_bswap16((__uint16_t)(x)))
142 #define ntohl(x) ((__uint32_t)__builtin_bswap32((__uint32_t)(x)))
143 #define htonl(x) ((__uint32_t)__builtin_bswap32((__uint32_t)(x)))
149 #define ntohll(x) __DARWIN_OSSwapInt64(x)
150 #define htonll(x) __DARWIN_OSSwapInt64(x)
152 #define ntohll(x) ((__uint64_t)__builtin_bswap64((__uint64_t)(x)))
153 #define htonll(x) ((__uint64_t)__builtin_bswap64((__uint64_t)(x)))
156 #define NTOHL(x) (x) = ntohl((__uint32_t)x)
157 #define NTOHS(x) (x) = ntohs((__uint16_t)x)
158 #define NTOHLL(x) (x) = ntohll((__uint64_t)x)
159 #define HTONL(x) (x) = htonl((__uint32_t)x)
160 #define HTONS(x) (x) = htons((__uint16_t)x)
161 #define HTONLL(x) (x) = htonll((__uint64_t)x)