Lines Matching defs:x
6 #define ntohl(x) __bswap_32(x) argument
7 #define htonl(x) __bswap_32(x) argument
8 #define ntohs(x) __bswap_16(x) argument
9 #define htons(x) __bswap_16(x) argument
10 #define cpu_to_le64(x) (x) argument
11 #define cpu_to_le32(x) (x) argument
12 #define cpu_to_le16(x) (x) argument
13 #define cpu_to_be64(x) __bswap_64(x) argument
14 #define cpu_to_be32(x) __bswap_32(x) argument
15 #define cpu_to_be16(x) __bswap_16(x) argument
16 #define le64_to_cpu(x) (x) argument
17 #define le32_to_cpu(x) (x) argument
18 #define le16_to_cpu(x) (x) argument
19 #define be64_to_cpu(x) __bswap_64(x) argument
20 #define be32_to_cpu(x) __bswap_32(x) argument
21 #define be16_to_cpu(x) __bswap_16(x) argument
22 #define cpu_to_le64s(x) do {} while (0) argument
23 #define cpu_to_le32s(x) do {} while (0) argument
24 #define cpu_to_le16s(x) do {} while (0) argument
25 #define cpu_to_be64s(x) __bswap_64s(x) argument
26 #define cpu_to_be32s(x) __bswap_32s(x) argument
27 #define cpu_to_be16s(x) __bswap_16s(x) argument
28 #define le64_to_cpus(x) do {} while (0) argument
29 #define le32_to_cpus(x) do {} while (0) argument
30 #define le16_to_cpus(x) do {} while (0) argument
31 #define be64_to_cpus(x) __bswap_64s(x) argument
32 #define be32_to_cpus(x) __bswap_32s(x) argument
33 #define be16_to_cpus(x) __bswap_16s(x) argument