Lines Matching defs:x

42 #define	__cpu_to_le64(x)	htole64(x)  argument
43 #define cpu_to_le64(x) __cpu_to_le64(x) argument
44 #define __le64_to_cpu(x) le64toh(x) argument
45 #define le64_to_cpu(x) __le64_to_cpu(x) argument
46 #define __cpu_to_le32(x) htole32(x) argument
47 #define cpu_to_le32(x) __cpu_to_le32(x) argument
48 #define __le32_to_cpu(x) le32toh(x) argument
49 #define le32_to_cpu(x) __le32_to_cpu(x) argument
50 #define __cpu_to_le16(x) htole16(x) argument
51 #define cpu_to_le16(x) __cpu_to_le16(x) argument
52 #define __le16_to_cpu(x) le16toh(x) argument
53 #define le16_to_cpu(x) __le16_to_cpu(x) argument
54 #define __cpu_to_be64(x) htobe64(x) argument
55 #define cpu_to_be64(x) __cpu_to_be64(x) argument
56 #define __be64_to_cpu(x) be64toh(x) argument
57 #define be64_to_cpu(x) __be64_to_cpu(x) argument
58 #define __cpu_to_be32(x) htobe32(x) argument
59 #define cpu_to_be32(x) __cpu_to_be32(x) argument
60 #define __be32_to_cpu(x) be32toh(x) argument
61 #define be32_to_cpu(x) __be32_to_cpu(x) argument
62 #define __cpu_to_be16(x) htobe16(x) argument
63 #define cpu_to_be16(x) __cpu_to_be16(x) argument
64 #define __be16_to_cpu(x) be16toh(x) argument
65 #define be16_to_cpu(x) __be16_to_cpu(x) argument
67 #define __cpu_to_le64p(x) htole64(*((const uint64_t *)(x))) argument
68 #define cpu_to_le64p(x) __cpu_to_le64p(x) argument
69 #define __le64_to_cpup(x) le64toh(*((const uint64_t *)(x))) argument
70 #define le64_to_cpup(x) __le64_to_cpup(x) argument
71 #define __cpu_to_le32p(x) htole32(*((const uint32_t *)(x))) argument
72 #define cpu_to_le32p(x) __cpu_to_le32p(x) argument
73 #define __le32_to_cpup(x) le32toh(*((const uint32_t *)(x))) argument
74 #define le32_to_cpup(x) __le32_to_cpup(x) argument
75 #define __cpu_to_le16p(x) htole16(*((const uint16_t *)(x))) argument
76 #define cpu_to_le16p(x) __cpu_to_le16p(x) argument
77 #define __le16_to_cpup(x) le16toh(*((const uint16_t *)(x))) argument
78 #define le16_to_cpup(x) __le16_to_cpup(x) argument
79 #define __cpu_to_be64p(x) htobe64(*((const uint64_t *)(x))) argument
80 #define cpu_to_be64p(x) __cpu_to_be64p(x) argument
81 #define __be64_to_cpup(x) be64toh(*((const uint64_t *)(x))) argument
82 #define be64_to_cpup(x) __be64_to_cpup(x) argument
83 #define __cpu_to_be32p(x) htobe32(*((const uint32_t *)(x))) argument
84 #define cpu_to_be32p(x) __cpu_to_be32p(x) argument
85 #define __be32_to_cpup(x) be32toh(*((const uint32_t *)(x))) argument
86 #define be32_to_cpup(x) __be32_to_cpup(x) argument
87 #define __cpu_to_be16p(x) htobe16(*((const uint16_t *)(x))) argument
88 #define cpu_to_be16p(x) __cpu_to_be16p(x) argument
89 #define __be16_to_cpup(x) be16toh(*((const uint16_t *)(x))) argument
90 #define be16_to_cpup(x) __be16_to_cpup(x) argument
93 #define __cpu_to_le64s(x) do { *((uint64_t *)(x)) = cpu_to_le64p((x)); } while (0) argument
94 #define cpu_to_le64s(x) __cpu_to_le64s(x) argument
95 #define __le64_to_cpus(x) do { *((uint64_t *)(x)) = le64_to_cpup((x)); } while (0) argument
96 #define le64_to_cpus(x) __le64_to_cpus(x) argument
97 #define __cpu_to_le32s(x) do { *((uint32_t *)(x)) = cpu_to_le32p((x)); } while (0) argument
98 #define cpu_to_le32s(x) __cpu_to_le32s(x) argument
99 #define __le32_to_cpus(x) do { *((uint32_t *)(x)) = le32_to_cpup((x)); } while (0) argument
100 #define le32_to_cpus(x) __le32_to_cpus(x) argument
101 #define __cpu_to_le16s(x) do { *((uint16_t *)(x)) = cpu_to_le16p((x)); } while (0) argument
102 #define cpu_to_le16s(x) __cpu_to_le16s(x) argument
103 #define __le16_to_cpus(x) do { *((uint16_t *)(x)) = le16_to_cpup((x)); } while (0) argument
104 #define le16_to_cpus(x) __le16_to_cpus(x) argument
105 #define __cpu_to_be64s(x) do { *((uint64_t *)(x)) = cpu_to_be64p((x)); } while (0) argument
106 #define cpu_to_be64s(x) __cpu_to_be64s(x) argument
107 #define __be64_to_cpus(x) do { *((uint64_t *)(x)) = be64_to_cpup((x)); } while (0) argument
108 #define be64_to_cpus(x) __be64_to_cpus(x) argument
109 #define __cpu_to_be32s(x) do { *((uint32_t *)(x)) = cpu_to_be32p((x)); } while (0) argument
110 #define cpu_to_be32s(x) __cpu_to_be32s(x) argument
111 #define __be32_to_cpus(x) do { *((uint32_t *)(x)) = be32_to_cpup((x)); } while (0) argument
112 #define be32_to_cpus(x) __be32_to_cpus(x) argument
113 #define __cpu_to_be16s(x) do { *((uint16_t *)(x)) = cpu_to_be16p((x)); } while (0) argument
114 #define cpu_to_be16s(x) __cpu_to_be16s(x) argument
115 #define __be16_to_cpus(x) do { *((uint16_t *)(x)) = be16_to_cpup((x)); } while (0) argument
116 #define be16_to_cpus(x) __be16_to_cpus(x) argument
118 #define swab16(x) bswap16(x) argument
119 #define swab32(x) bswap32(x) argument
120 #define swab64(x) bswap64(x) argument