Lines Matching refs:cnt

370 	size_t cnt;  in php_sha512_crypt_r()  local
455 for (cnt = key_len; cnt > 64; cnt -= 64) { in php_sha512_crypt_r()
458 sha512_process_bytes(alt_result, cnt, &ctx); in php_sha512_crypt_r()
462 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha512_crypt_r()
463 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
477 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha512_crypt_r()
487 for (cnt = key_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r()
491 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
497 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha512_crypt_r()
507 for (cnt = salt_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r()
510 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
514 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha512_crypt_r()
519 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
526 if (cnt % 3 != 0) { in php_sha512_crypt_r()
531 if (cnt % 7 != 0) { in php_sha512_crypt_r()
536 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
766 int cnt; in main() local
775 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
777 sha512_process_bytes (tests[cnt].input, strlen (tests[cnt].input), &ctx); in main()
779 if (memcmp (tests[cnt].result, sum, 64) != 0) { in main()
780 printf ("test %d run %d failed\n", cnt, 1); in main()
785 for (i = 0; tests[cnt].input[i] != '\0'; ++i) { in main()
786 sha512_process_bytes (&tests[cnt].input[i], 1, &ctx); in main()
789 if (memcmp (tests[cnt].result, sum, 64) != 0) { in main()
790 printf ("test %d run %d failed\n", cnt, 2); in main()
805 printf ("test %d failed\n", cnt); in main()
809 for (cnt = 0; cnt < ntests2; ++cnt) { in main()
810 char *cp = php_sha512_crypt(tests2[cnt].input, tests2[cnt].salt); in main()
812 if (strcmp (cp, tests2[cnt].expected) != 0) { in main()
814 cnt, tests2[cnt].expected, cp); in main()