Lines Matching defs:x
4 #define ntohl(x) __bswap_32(x) argument
5 #define htonl(x) __bswap_32(x) argument
6 #define ntohs(x) __bswap_16(x) argument
7 #define htons(x) __bswap_16(x) argument
8 #define cpu_to_le32(x) (x) argument
9 #define cpu_to_le16(x) (x) argument
10 #define cpu_to_be32(x) __bswap_32(x) argument
11 #define cpu_to_be16(x) __bswap_16(x) argument
12 #define le32_to_cpu(x) (x) argument
13 #define le16_to_cpu(x) (x) argument
14 #define be32_to_cpu(x) __bswap_32(x) argument
15 #define be16_to_cpu(x) __bswap_16(x) argument