Lines Matching +defs:x +defs:c
71 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument
72 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument
73 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
74 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
77 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument
81 #define FF(a, b, c, d, x, s, ac) \ argument
86 #define GG(a, b, c, d, x, s, ac) \ argument
91 #define HH(a, b, c, d, x, s, ac) \ argument
96 #define II(a, b, c, d, x, s, ac) \ argument
102 #define UL(x) x##U argument
201 UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3]; in Transform() local