Lines Matching defs:x
21 #define ___swab16(x) \ argument
25 #define ___swab32(x) \ argument
31 #define ___swab64(x) \ argument
46 # define __arch__swab16(x) ___swab16(x) argument
49 # define __arch__swab32(x) ___swab32(x) argument
52 # define __arch__swab64(x) ___swab64(x) argument
56 # define __arch__swab16p(x) __swab16(*(x)) argument
59 # define __arch__swab32p(x) __swab32(*(x)) argument
62 # define __arch__swab64p(x) __swab64(*(x)) argument
66 # define __arch__swab16s(x) do { *(x) = __swab16p((x)); } while (0) argument
69 # define __arch__swab32s(x) do { *(x) = __swab32p((x)); } while (0) argument
72 # define __arch__swab64s(x) do { *(x) = __swab64p((x)); } while (0) argument
80 # define __swab16(x) \ argument
84 # define __swab32(x) \ argument
88 # define __swab64(x) \ argument
93 # define __swab16(x) __fswab16(x) argument
94 # define __swab32(x) __fswab32(x) argument
95 # define __swab64(x) __fswab64(x) argument
99 static __inline__ __attribute__((const)) __u16 __fswab16(__u16 x) in __fswab16()
103 static __inline__ __u16 __swab16p(const __u16 *x) in __swab16p()
112 static __inline__ __attribute__((const)) __u32 __fswab32(__u32 x) in __fswab32()
116 static __inline__ __u32 __swab32p(const __u32 *x) in __swab32p()
125 static __inline__ __attribute__((const)) __u64 __fswab64(__u64 x) in __fswab64()
135 static __inline__ __u64 __swab64p(const __u64 *x) in __swab64p()