Lines Matching defs:H
33 /* F, G and H are basic MD4 functions: selection, majority, parity */
36 #define H(x, y, z) ((x) ^ (y) ^ (z))
78 ROUND(H, a, b, c, d, in[3] + K3, 3);
79 ROUND(H, d, a, b, c, in[7] + K3, 9);
80 ROUND(H, c, d, a, b, in[2] + K3, 11);
81 ROUND(H, b, c, d, a, in[6] + K3, 15);
82 ROUND(H, a, b, c, d, in[1] + K3, 3);
83 ROUND(H, d, a, b, c, in[5] + K3, 9);
84 ROUND(H, c, d, a, b, in[0] + K3, 11);
85 ROUND(H, b, c, d, a, in[4] + K3, 15);
100 #undef H