Lines Matching refs:x
111 #define ntohl(x) ((__uint32_t)(x))
112 #define ntohs(x) ((__uint16_t)(x))
113 #define htonl(x) ((__uint32_t)(x))
114 #define htons(x) ((__uint16_t)(x))
118 #define ntohll(x) ((__uint64_t)(x))
119 #define htonll(x) ((__uint64_t)(x))
121 #define NTOHL(x) (x)
122 #define NTOHS(x) (x)
123 #define NTOHLL(x) (x)
124 #define HTONL(x) (x)
125 #define HTONS(x) (x)
126 #define HTONLL(x) (x)
134 #define ntohs(x) __DARWIN_OSSwapInt16(x)
135 #define htons(x) __DARWIN_OSSwapInt16(x)
137 #define ntohl(x) __DARWIN_OSSwapInt32(x)
138 #define htonl(x) __DARWIN_OSSwapInt32(x)
140 #define ntohs(x) ((__uint16_t)__builtin_bswap16((__uint16_t)(x)))
141 #define htons(x) ((__uint16_t)__builtin_bswap16((__uint16_t)(x)))
143 #define ntohl(x) ((__uint32_t)__builtin_bswap32((__uint32_t)(x)))
144 #define htonl(x) ((__uint32_t)__builtin_bswap32((__uint32_t)(x)))
150 #define ntohll(x) __DARWIN_OSSwapInt64(x)
151 #define htonll(x) __DARWIN_OSSwapInt64(x)
153 #define ntohll(x) ((__uint64_t)__builtin_bswap64((__uint64_t)(x)))
154 #define htonll(x) ((__uint64_t)__builtin_bswap64((__uint64_t)(x)))
157 #define NTOHL(x) (x) = ntohl((__uint32_t)x)
158 #define NTOHS(x) (x) = ntohs((__uint16_t)x)
159 #define NTOHLL(x) (x) = ntohll((__uint64_t)x)
160 #define HTONL(x) (x) = htonl((__uint32_t)x)
161 #define HTONS(x) (x) = htons((__uint16_t)x)
162 #define HTONLL(x) (x) = htonll((__uint64_t)x)