Lines Matching defs:x
23 #define ___swab16(x) \ argument
31 #define ___swab32(x) \ argument
41 #define ___swab64(x) \ argument
55 #define ___constant_swab16(x) \ argument
59 #define ___constant_swab32(x) \ argument
65 #define ___constant_swab64(x) \ argument
80 # define __arch__swab16(x) ({ __u16 __tmp = (x) ; ___swab16(__tmp); }) argument
83 # define __arch__swab32(x) ({ __u32 __tmp = (x) ; ___swab32(__tmp); }) argument
86 # define __arch__swab64(x) ({ __u64 __tmp = (x) ; ___swab64(__tmp); }) argument
90 # define __arch__swab16p(x) __arch__swab16(*(x)) argument
93 # define __arch__swab32p(x) __arch__swab32(*(x)) argument
96 # define __arch__swab64p(x) __arch__swab64(*(x)) argument
100 # define __arch__swab16s(x) do { *(x) = __arch__swab16p((x)); } while (0) argument
103 # define __arch__swab32s(x) do { *(x) = __arch__swab32p((x)); } while (0) argument
106 # define __arch__swab64s(x) do { *(x) = __arch__swab64p((x)); } while (0) argument
114 # define __swab16(x) \ argument
118 # define __swab32(x) \ argument
122 # define __swab64(x) \ argument
127 # define __swab16(x) __fswab16(x) argument
128 # define __swab32(x) __fswab32(x) argument
129 # define __swab64(x) __fswab64(x) argument
133 static __inline__ __attribute_const__ __u16 __fswab16(__u16 x) in __fswab16()
137 static __inline__ __u16 __swab16p(const __u16 *x) in __swab16p()
146 static __inline__ __attribute_const__ __u32 __fswab32(__u32 x) in __fswab32()
150 static __inline__ __u32 __swab32p(const __u32 *x) in __swab32p()
160 static __inline__ __attribute_const__ __u64 __fswab64(__u64 x) in __fswab64()
170 static __inline__ __u64 __swab64p(const __u64 *x) in __swab64p()