Lines Matching defs:x

161 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))  argument
162 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
163 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
164 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
168 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
221 uint32_t d = state[3], e = state[4], x[16], tmp; in SHA1Transform() local
429 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
430 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
431 #define SHR(b, x) (x >> b) argument
434 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
436 #define SHA256_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
438 #define SHA256_F2(x) (ROTR32( 2,(x)) ^ ROTR32(13,(x)) ^ ROTR32(22,(x))) argument
440 #define SHA256_F3(x) (ROTR32( 6,(x)) ^ ROTR32(11,(x)) ^ ROTR32(25,(x))) argument
442 #define SHA256_F4(x) (ROTR32( 7,(x)) ^ ROTR32(18,(x)) ^ SHR( 3,(x))) argument
444 #define SHA256_F5(x) (ROTR32(17,(x)) ^ ROTR32(19,(x)) ^ SHR(10,(x))) argument
482 uint32_t x[16], T1, T2, W[64]; in SHA256Transform() local
692 #define SHA512_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
694 #define SHA512_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
696 #define SHA512_F2(x) (ROTR64(28, x) ^ ROTR64(34, x) ^ ROTR64(39, x)) argument
698 #define SHA512_F3(x) (ROTR64(14, x) ^ ROTR64(18, x) ^ ROTR64(41, x)) argument
700 #define SHA512_F4(x) (ROTR64( 1, x) ^ ROTR64( 8, x) ^ SHR(7, x)) argument
702 #define SHA512_F5(x) (ROTR64(19, x) ^ ROTR64(61, x) ^ SHR(6, x)) argument
792 uint64_t x[16], T1, T2, W[80]; in SHA512Transform() local