Lines Matching refs:cnt

339 	size_t cnt;  in php_sha256_crypt_r()  local
412 for (cnt = key_len; cnt > 32; cnt -= 32) { in php_sha256_crypt_r()
415 sha256_process_bytes(alt_result, cnt, &ctx); in php_sha256_crypt_r()
419 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha256_crypt_r()
420 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
434 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha256_crypt_r()
443 for (cnt = key_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r()
446 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r()
452 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha256_crypt_r()
461 for (cnt = salt_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r()
464 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r()
468 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha256_crypt_r()
473 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
480 if (cnt % 3 != 0) { in php_sha256_crypt_r()
485 if (cnt % 7 != 0) { in php_sha256_crypt_r()
490 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
682 int cnt, i; in main() local
688 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
690 sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx); in main()
692 if (memcmp(tests[cnt].result, sum, 32) != 0) { in main()
693 printf("test %d run %d failed\n", cnt, 1); in main()
698 for (i = 0; tests[cnt].input[i] != '\0'; ++i) { in main()
699 sha256_process_bytes(&tests[cnt].input[i], 1, &ctx); in main()
702 if (memcmp(tests[cnt].result, sum, 32) != 0) { in main()
703 printf("test %d run %d failed\n", cnt, 2); in main()
719 printf("test %d failed\n", cnt); in main()
723 for (cnt = 0; cnt < ntests2; ++cnt) { in main()
724 char *cp = php_sha256_crypt(tests2[cnt].input, tests2[cnt].salt); in main()
725 if (strcmp(cp, tests2[cnt].expected) != 0) { in main()
726 printf("test %d: expected \"%s\", got \"%s\"\n", cnt, tests2[cnt].expected, cp); in main()