/src/common/lib/libc/md/ |
md4c.c | 103 * FF, GG and HH are transformations for rounds 1, 2 and 3. 111 #define GG(a, b, c, d, x, s) { \ 249 GG (a, b, c, d, x[ 0], S21); /* 17 */ 250 GG (d, a, b, c, x[ 4], S22); /* 18 */ 251 GG (c, d, a, b, x[ 8], S23); /* 19 */ 252 GG (b, c, d, a, x[12], S24); /* 20 */ 253 GG (a, b, c, d, x[ 1], S21); /* 21 */ 254 GG (d, a, b, c, x[ 5], S22); /* 22 */ 255 GG (c, d, a, b, x[ 9], S23); /* 23 */ 256 GG (b, c, d, a, x[13], S24); /* 24 * [all...] |
md5c.c | 147 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. 156 #define GG(a, b, c, d, x, s, ac) { \ 295 GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */ 296 GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */ 297 GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */ 298 GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */ 299 GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */ 300 GG (d, a, b, c, x[10], S22, 0x2441453); /* 22 */ 301 GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */ 302 GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 * [all...] |
/src/sys/ufs/ext2fs/ |
ext2fs_hash.c | 73 * FF, GG, and HH are transformations for rounds 1, 2, and 3. 81 #define GG(a, b, c, d, x, s) { \ 191 GG(a, b, c, d, data[1], 3); 192 GG(d, a, b, c, data[3], 5); 193 GG(c, d, a, b, data[5], 9); 194 GG(b, c, d, a, data[7], 13); 195 GG(a, b, c, d, data[0], 3); 196 GG(d, a, b, c, data[2], 5); 197 GG(c, d, a, b, data[4], 9); 198 GG(b, c, d, a, data[6], 13) [all...] |