Lines Matching defs:x

19 static ALWAYS_INLINE uint32_t rotl32(uint32_t x, unsigned n)  in rotl32()
24 static ALWAYS_INLINE uint32_t rotr32(uint32_t x, unsigned n) in rotr32()
30 static ALWAYS_INLINE uint64_t rotr64(uint64_t x, unsigned n) in rotr64()
36 static ALWAYS_INLINE uint64_t rotl64(uint64_t x, unsigned n) in rotl64()
630 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha256_process_block64() argument
631 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha256_process_block64() argument
632 #define S0(x) (rotr32(x, 2) ^ rotr32(x, 13) ^ rotr32(x, 22)) in sha256_process_block64() argument
633 #define S1(x) (rotr32(x, 6) ^ rotr32(x, 11) ^ rotr32(x, 25)) in sha256_process_block64() argument
634 #define R0(x) (rotr32(x, 7) ^ rotr32(x, 18) ^ (x >> 3)) in sha256_process_block64() argument
635 #define R1(x) (rotr32(x, 17) ^ rotr32(x, 19) ^ (x >> 10)) in sha256_process_block64() argument
707 #define Ch(x, y, z) ((x & y) ^ (~x & z)) in sha512_process_block128() argument
708 #define Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha512_process_block128() argument
709 #define S0(x) (rotr64(x, 28) ^ rotr64(x, 34) ^ rotr64(x, 39)) in sha512_process_block128() argument
710 #define S1(x) (rotr64(x, 14) ^ rotr64(x, 18) ^ rotr64(x, 41)) in sha512_process_block128() argument
711 #define R0(x) (rotr64(x, 1) ^ rotr64(x, 8) ^ (x >> 7)) in sha512_process_block128() argument
712 #define R1(x) (rotr64(x, 19) ^ rotr64(x, 61) ^ (x >> 6)) in sha512_process_block128() argument
1074 unsigned x; in sha3_process_block72() local
1223 unsigned x; in sha3_process_block72() local
1272 #define RhoPi_twice(x) \ in sha3_process_block72() argument