Lines Matching refs:x
13 # define __bswap_16(x) \ argument
15 ({ unsigned short int __bsx = (x); \
29 # define __bswap_32(x) \ argument
31 ({ unsigned int __bsx = (x); \
47 # define __bswap_constant_64(x) \ argument
48 ((((x) & 0xff00000000000000ull) >> 56) \
49 | (((x) & 0x00ff000000000000ull) >> 40) \
50 | (((x) & 0x0000ff0000000000ull) >> 24) \
51 | (((x) & 0x000000ff00000000ull) >> 8) \
52 | (((x) & 0x00000000ff000000ull) << 8) \
53 | (((x) & 0x0000000000ff0000ull) << 24) \
54 | (((x) & 0x000000000000ff00ull) << 40) \
55 | (((x) & 0x00000000000000ffull) << 56))
57 # define __bswap_64(x) \ argument
61 if (__builtin_constant_p (x)) \
62 __r.__ll = __bswap_constant_64 (x); \
65 __w.__ll = (x); \