Lines Matching refs:cnt

388 	size_t cnt;  in php_sha512_crypt_r()  local
462 for (cnt = key_len; cnt > 64; cnt -= 64) { in php_sha512_crypt_r()
465 sha512_process_bytes(alt_result, cnt, &ctx); in php_sha512_crypt_r()
469 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha512_crypt_r()
470 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
484 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha512_crypt_r()
493 for (cnt = key_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r()
497 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
503 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha512_crypt_r()
512 for (cnt = salt_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r()
515 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r()
519 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha512_crypt_r()
524 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
531 if (cnt % 3 != 0) { in php_sha512_crypt_r()
536 if (cnt % 7 != 0) { in php_sha512_crypt_r()
541 if ((cnt & 1) != 0) { in php_sha512_crypt_r()
763 int cnt; in main() local
772 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
774 sha512_process_bytes (tests[cnt].input, strlen (tests[cnt].input), &ctx); in main()
776 if (memcmp (tests[cnt].result, sum, 64) != 0) { in main()
777 printf ("test %d run %d failed\n", cnt, 1); in main()
782 for (i = 0; tests[cnt].input[i] != '\0'; ++i) { in main()
783 sha512_process_bytes (&tests[cnt].input[i], 1, &ctx); in main()
786 if (memcmp (tests[cnt].result, sum, 64) != 0) { in main()
787 printf ("test %d run %d failed\n", cnt, 2); in main()
802 printf ("test %d failed\n", cnt); in main()
806 for (cnt = 0; cnt < ntests2; ++cnt) { in main()
807 char *cp = php_sha512_crypt(tests2[cnt].input, tests2[cnt].salt); in main()
809 if (strcmp (cp, tests2[cnt].expected) != 0) { in main()
811 cnt, tests2[cnt].expected, cp); in main()