Lines Matching refs:x

28 #define ___swahw32(x) \  argument
30 __u32 __x = (x); \
35 #define ___swahb32(x) \ argument
37 __u32 __x = (x); \
43 #define ___constant_swahw32(x) \ argument
45 (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | \
46 (((__u32)(x) & (__u32)0xffff0000UL) >> 16) ))
47 #define ___constant_swahb32(x) \ argument
49 (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | \
50 (((__u32)(x) & (__u32)0xff00ff00UL) >> 8) ))
56 # define __arch__swahw32(x) ___swahw32(x) argument
59 # define __arch__swahb32(x) ___swahb32(x) argument
63 # define __arch__swahw32p(x) __swahw32(*(x)) argument
66 # define __arch__swahb32p(x) __swahb32(*(x)) argument
70 # define __arch__swahw32s(x) do { *(x) = __swahw32p((x)); } while (0) argument
73 # define __arch__swahb32s(x) do { *(x) = __swahb32p((x)); } while (0) argument
81 # define __swahw32(x) \ argument
82 (__builtin_constant_p((__u32)(x)) ? \
83 ___swahw32((x)) : \
84 __fswahw32((x)))
85 # define __swahb32(x) \ argument
86 (__builtin_constant_p((__u32)(x)) ? \
87 ___swahb32((x)) : \
88 __fswahb32((x)))
90 # define __swahw32(x) __fswahw32(x) argument
91 # define __swahb32(x) __fswahb32(x) argument
95 static __inline__ __const__ __u32 __fswahw32(__u32 x) in __fswahw32() argument
97 return __arch__swahw32(x); in __fswahw32()
99 static __inline__ __u32 __swahw32p(__u32 *x) in __swahw32p() argument
101 return __arch__swahw32p(x); in __swahw32p()
109 static __inline__ __const__ __u32 __fswahb32(__u32 x) in __fswahb32() argument
111 return __arch__swahb32(x); in __fswahb32()
113 static __inline__ __u32 __swahb32p(__u32 *x) in __swahb32p() argument
115 return __arch__swahb32p(x); in __swahb32p()