Lines Matching defs:x
112 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
113 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
114 #define SHR(b, x) (x >> b) argument
117 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
119 #define SHA256_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
121 #define SHA256_F2(x) (ROTR32( 2,(x)) ^ ROTR32(13,(x)) ^ ROTR32(22,(x))) argument
123 #define SHA256_F3(x) (ROTR32( 6,(x)) ^ ROTR32(11,(x)) ^ ROTR32(25,(x))) argument
125 #define SHA256_F4(x) (ROTR32( 7,(x)) ^ ROTR32(18,(x)) ^ SHR( 3,(x))) argument
127 #define SHA256_F5(x) (ROTR32(17,(x)) ^ ROTR32(19,(x)) ^ SHR(10,(x))) argument
165 uint32_t x[16], T1, T2, W[64]; in SHA256Transform() local
377 #define SHA512_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
379 #define SHA512_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
381 #define SHA512_F2(x) (ROTR64(28, x) ^ ROTR64(34, x) ^ ROTR64(39, x)) argument
383 #define SHA512_F3(x) (ROTR64(14, x) ^ ROTR64(18, x) ^ ROTR64(41, x)) argument
385 #define SHA512_F4(x) (ROTR64( 1, x) ^ ROTR64( 8, x) ^ SHR(7, x)) argument
387 #define SHA512_F5(x) (ROTR64(19, x) ^ ROTR64(61, x) ^ SHR(6, x)) argument
477 uint64_t x[16], T1, T2, W[80]; in SHA512Transform() local