Searched refs:FF (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_5/ext/hash/ |
| H A D | hash_md.c | 240 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. 243 #define FF(a, b, c, d, x, s, ac) { \ macro 363 FF(a, b, c, d, x[0], S11, 0xd76aa478); /* 1 */ 364 FF(d, a, b, c, x[1], S12, 0xe8c7b756); /* 2 */ 365 FF(c, d, a, b, x[2], S13, 0x242070db); /* 3 */ 366 FF(b, c, d, a, x[3], S14, 0xc1bdceee); /* 4 */ 367 FF(a, b, c, d, x[4], S11, 0xf57c0faf); /* 5 */ 368 FF(d, a, b, c, x[5], S12, 0x4787c62a); /* 6 */ 369 FF(c, d, a, b, x[6], S13, 0xa8304613); /* 7 */ 370 FF( [all...] |
| H A D | hash_sha.c | 179 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. 181 #define FF(a, b, c, d, e, w) { \ macro 230 FF(a, b, c, d, e, x[0]); /* 1 */ 231 FF(e, a, b, c, d, x[1]); /* 2 */ 232 FF(d, e, a, b, c, x[2]); /* 3 */ 233 FF(c, d, e, a, b, x[3]); /* 4 */ 234 FF(b, c, d, e, a, x[4]); /* 5 */ 235 FF(a, b, c, d, e, x[5]); /* 6 */ 236 FF(e, a, b, c, d, x[6]); /* 7 */ 237 FF( [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | sha1.c | 138 /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. 140 #define FF(a, b, c, d, e, w) { \ macro 270 FF(a, b, c, d, e, x[0]); /* 1 */ 271 FF(e, a, b, c, d, x[1]); /* 2 */ 272 FF(d, e, a, b, c, x[2]); /* 3 */ 273 FF(c, d, e, a, b, x[3]); /* 4 */ 274 FF(b, c, d, e, a, x[4]); /* 5 */ 275 FF(a, b, c, d, e, x[5]); /* 6 */ 276 FF(e, a, b, c, d, x[6]); /* 7 */ 277 FF( [all...] |
Completed in 4 milliseconds