Lines Matching refs:x
43 #define e0(x) (ror64(x, 28) ^ ror64(x, 34) ^ ror64(x, 39)) argument
44 #define e1(x) (ror64(x, 14) ^ ror64(x, 18) ^ ror64(x, 41)) argument
45 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7)) argument
46 #define s1(x) (ror64(x, 19) ^ ror64(x, 61) ^ (x >> 6)) argument
55 static inline uint64_t Ch(uint64_t x, uint64_t y, uint64_t z) in Ch() argument
57 return z ^ (x & (y ^ z)); in Ch()
60 static inline uint64_t Maj(uint64_t x, uint64_t y, uint64_t z) in Maj() argument
62 return (x & y) | (z & (x | y)); in Maj()
117 #define __cpu_to_le64(x) ((__force __le64)(__u64)(x)) argument
119 #define _uswap_64(x, sfx) \ argument
120 ((((x) & 0xff00000000000000##sfx) >> 56) |\
121 (((x) & 0x00ff000000000000##sfx) >> 40) |\
122 (((x) & 0x0000ff0000000000##sfx) >> 24) |\
123 (((x) & 0x000000ff00000000##sfx) >> 8) |\
124 (((x) & 0x00000000ff000000##sfx) << 8) |\
125 (((x) & 0x0000000000ff0000##sfx) << 24) |\
126 (((x) & 0x000000000000ff00##sfx) << 40) |\
127 (((x) & 0x00000000000000ff##sfx) << 56))
130 #define uswap_64(x) _uswap_64(x, ull) argument
132 #define uswap_64(x) _uswap_64(x) argument
136 #define cpu_to_be64(x) uswap_64(x) argument
138 #define cpu_to_be64(x) (x) argument