Lines Matching refs:x
18 #define ___constant_swab16(x) ((__u16)( \ argument
19 (((__u16)(x) & (__u16)0x00ffU) << 8) | \
20 (((__u16)(x) & (__u16)0xff00U) >> 8)))
22 #define ___constant_swab32(x) ((__u32)( \ argument
23 (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \
24 (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \
25 (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \
26 (((__u32)(x) & (__u32)0xff000000UL) >> 24)))
28 #define ___constant_swab64(x) ((__u64)( \ argument
29 (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | \
30 (((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | \
31 (((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | \
32 (((__u64)(x) & (__u64)0x00000000ff000000ULL) << 8) | \
33 (((__u64)(x) & (__u64)0x000000ff00000000ULL) >> 8) | \
34 (((__u64)(x) & (__u64)0x0000ff0000000000ULL) >> 24) | \
35 (((__u64)(x) & (__u64)0x00ff000000000000ULL) >> 40) | \
36 (((__u64)(x) & (__u64)0xff00000000000000ULL) >> 56)))
38 #define ___constant_swahw32(x) ((__u32)( \ argument
39 (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | \
40 (((__u32)(x) & (__u32)0xffff0000UL) >> 16)))
42 #define ___constant_swahb32(x) ((__u32)( \ argument
43 (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | \
44 (((__u32)(x) & (__u32)0xff00ff00UL) >> 8)))
106 #define __swab16(x) (__u16)__builtin_bswap16((__u16)(x)) argument
108 #define __swab16(x) \ argument
109 (__u16)(__builtin_constant_p(x) ? \
110 ___constant_swab16(x) : \
111 __fswab16(x))
119 #define __swab32(x) (__u32)__builtin_bswap32((__u32)(x)) argument
121 #define __swab32(x) \ argument
122 (__u32)(__builtin_constant_p(x) ? \
123 ___constant_swab32(x) : \
124 __fswab32(x))
132 #define __swab64(x) (__u64)__builtin_bswap64((__u64)(x)) argument
134 #define __swab64(x) \ argument
135 (__u64)(__builtin_constant_p(x) ? \
136 ___constant_swab64(x) : \
137 __fswab64(x))
155 #define __swahw32(x) \ argument
156 (__builtin_constant_p((__u32)(x)) ? \
157 ___constant_swahw32(x) : \
158 __fswahw32(x))
166 #define __swahb32(x) \ argument
167 (__builtin_constant_p((__u32)(x)) ? \
168 ___constant_swahb32(x) : \
169 __fswahb32(x))