Lines Matching refs:cnt
371 size_t cnt; in php_sha512_crypt_r() local
456 for (cnt = key_len; cnt > 64; cnt -= 64) { in php_sha512_crypt_r()
459 sha512_process_bytes(alt_result, cnt, &ctx); in php_sha512_crypt_r()
463 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha512_crypt_r()
464 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
478 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha512_crypt_r()
488 for (cnt = key_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r()
492 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
498 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha512_crypt_r()
508 for (cnt = salt_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r()
511 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
515 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha512_crypt_r()
520 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
527 if (cnt % 3 != 0) { in php_sha512_crypt_r()
532 if (cnt % 7 != 0) { in php_sha512_crypt_r()
537 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
767 int cnt; in main() local
776 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
778 sha512_process_bytes (tests[cnt].input, strlen (tests[cnt].input), &ctx); in main()
780 if (memcmp (tests[cnt].result, sum, 64) != 0) { in main()
781 printf ("test %d run %d failed\n", cnt, 1); in main()
786 for (i = 0; tests[cnt].input[i] != '\0'; ++i) { in main()
787 sha512_process_bytes (&tests[cnt].input[i], 1, &ctx); in main()
790 if (memcmp (tests[cnt].result, sum, 64) != 0) { in main()
791 printf ("test %d run %d failed\n", cnt, 2); in main()
806 printf ("test %d failed\n", cnt); in main()
810 for (cnt = 0; cnt < ntests2; ++cnt) { in main()
811 char *cp = php_sha512_crypt(tests2[cnt].input, tests2[cnt].salt); in main()
813 if (strcmp (cp, tests2[cnt].expected) != 0) { in main()
815 cnt, tests2[cnt].expected, cp); in main()