Lines Matching defs:x
23 #define ___swab16(x) \ argument
31 #define ___swab24(x) \ argument
40 #define ___swab32(x) \ argument
50 #define ___swab64(x) \ argument
64 #define ___constant_swab16(x) \ argument
68 #define ___constant_swab24(x) \ argument
73 #define ___constant_swab32(x) \ argument
79 #define ___constant_swab64(x) \ argument
94 # define __arch__swab16(x) ({ __u16 __tmp = (x) ; ___swab16(__tmp); }) argument
97 # define __arch__swab24(x) ({ __u32 __tmp = (x) ; ___swab24(__tmp); }) argument
100 # define __arch__swab32(x) ({ __u32 __tmp = (x) ; ___swab32(__tmp); }) argument
103 # define __arch__swab64(x) ({ __u64 __tmp = (x) ; ___swab64(__tmp); }) argument
107 # define __arch__swab16p(x) __arch__swab16(*(x)) argument
110 # define __arch__swab24p(x) __arch__swab24(*(x)) argument
113 # define __arch__swab32p(x) __arch__swab32(*(x)) argument
116 # define __arch__swab64p(x) __arch__swab64(*(x)) argument
120 # define __arch__swab16s(x) do { *(x) = __arch__swab16p((x)); } while (0) argument
123 # define __arch__swab24s(x) do { *(x) = __arch__swab24p((x)); } while (0) argument
126 # define __arch__swab32s(x) do { *(x) = __arch__swab32p((x)); } while (0) argument
129 # define __arch__swab64s(x) do { *(x) = __arch__swab64p((x)); } while (0) argument
137 # define __swab16(x) \ argument
141 # define __swab24(x) \ argument
145 # define __swab32(x) \ argument
149 # define __swab64(x) \ argument
154 # define __swab16(x) __fswab16(x) argument
155 # define __swab24(x) __fswab24(x) argument
156 # define __swab32(x) __fswab32(x) argument
157 # define __swab64(x) __fswab64(x) argument
161 static __inline__ __attribute_const__ __u16 __fswab16(__u16 x) in __fswab16()
165 static __inline__ __u16 __swab16p(__u16 *x) in __swab16p()
174 static __inline__ __attribute_const__ __u32 __fswab24(__u32 x) in __fswab24()
178 static __inline__ __u32 __swab24p(__u32 *x) in __swab24p()
187 static __inline__ __attribute_const__ __u32 __fswab32(__u32 x) in __fswab32()
191 static __inline__ __u32 __swab32p(__u32 *x) in __swab32p()
201 static __inline__ __attribute_const__ __u64 __fswab64(__u64 x) in __fswab64()
211 static __inline__ __u64 __swab64p(__u64 *x) in __swab64p()