Lines Matching refs:cnt

361 	size_t cnt;  in php_sha256_crypt_r()  local
434 for (cnt = key_len; cnt > 32; cnt -= 32) { in php_sha256_crypt_r()
437 sha256_process_bytes(alt_result, cnt, &ctx); in php_sha256_crypt_r()
441 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha256_crypt_r()
442 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
456 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha256_crypt_r()
465 for (cnt = key_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r()
468 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r()
474 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha256_crypt_r()
483 for (cnt = salt_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r()
486 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r()
490 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha256_crypt_r()
495 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
502 if (cnt % 3 != 0) { in php_sha256_crypt_r()
507 if (cnt % 7 != 0) { in php_sha256_crypt_r()
512 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
705 int cnt, i; in main() local
711 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
713 sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx); in main()
715 if (memcmp(tests[cnt].result, sum, 32) != 0) { in main()
716 printf("test %d run %d failed\n", cnt, 1); in main()
721 for (i = 0; tests[cnt].input[i] != '\0'; ++i) { in main()
722 sha256_process_bytes(&tests[cnt].input[i], 1, &ctx); in main()
725 if (memcmp(tests[cnt].result, sum, 32) != 0) { in main()
726 printf("test %d run %d failed\n", cnt, 2); in main()
742 printf("test %d failed\n", cnt); in main()
746 for (cnt = 0; cnt < ntests2; ++cnt) { in main()
747 char *cp = php_sha256_crypt(tests2[cnt].input, tests2[cnt].salt); in main()
748 if (strcmp(cp, tests2[cnt].expected) != 0) { in main()
749 printf("test %d: expected \"%s\", got \"%s\"\n", cnt, tests2[cnt].expected, cp); in main()