Lines Matching defs:x
166 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
167 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
168 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
169 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
173 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
226 uint32_t d = state[3], e = state[4], x[16], tmp; in SHA1Transform() local
434 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
435 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
436 #define SHR(b, x) (x >> b) argument
439 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
441 #define SHA256_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
443 #define SHA256_F2(x) (ROTR32( 2,(x)) ^ ROTR32(13,(x)) ^ ROTR32(22,(x))) argument
445 #define SHA256_F3(x) (ROTR32( 6,(x)) ^ ROTR32(11,(x)) ^ ROTR32(25,(x))) argument
447 #define SHA256_F4(x) (ROTR32( 7,(x)) ^ ROTR32(18,(x)) ^ SHR( 3,(x))) argument
449 #define SHA256_F5(x) (ROTR32(17,(x)) ^ ROTR32(19,(x)) ^ SHR(10,(x))) argument
487 uint32_t x[16], T1, T2, W[64]; in SHA256Transform() local
697 #define SHA512_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
699 #define SHA512_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
701 #define SHA512_F2(x) (ROTR64(28, x) ^ ROTR64(34, x) ^ ROTR64(39, x)) argument
703 #define SHA512_F3(x) (ROTR64(14, x) ^ ROTR64(18, x) ^ ROTR64(41, x)) argument
705 #define SHA512_F4(x) (ROTR64( 1, x) ^ ROTR64( 8, x) ^ SHR(7, x)) argument
707 #define SHA512_F5(x) (ROTR64(19, x) ^ ROTR64(61, x) ^ SHR(6, x)) argument
797 uint64_t x[16], T1, T2, W[80]; in SHA512Transform() local