Lines Matching refs:x
73 #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
74 #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
75 #define H(x, y, z) ((x) ^ (y) ^ (z))
76 #define I(x, y, z) ((y) ^ ((x) | (~z)))
78 /* ROTATE_LEFT rotates x left n bits */
79 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
83 #define FF(a, b, c, d, x, s, ac) \
84 {(a) += F ((b), (c), (d)) + (x) + (u32_t)(ac); \
88 #define GG(a, b, c, d, x, s, ac) \
89 {(a) += G ((b), (c), (d)) + (x) + (u32_t)(ac); \
93 #define HH(a, b, c, d, x, s, ac) \
94 {(a) += H ((b), (c), (d)) + (x) + (u32_t)(ac); \
98 #define II(a, b, c, d, x, s, ac) \
99 {(a) += I ((b), (c), (d)) + (x) + (u32_t)(ac); \
105 #define UL(x) x##UL
108 #define UL(x) x##UL
110 #define UL(x) x