Lines Matching refs:cnt
333 size_t cnt; in php_sha256_crypt_r() local
417 for (cnt = key_len; cnt > 32; cnt -= 32) { in php_sha256_crypt_r()
420 sha256_process_bytes(alt_result, cnt, &ctx); in php_sha256_crypt_r()
424 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha256_crypt_r()
425 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
439 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha256_crypt_r()
449 for (cnt = key_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r()
452 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r()
458 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha256_crypt_r()
468 for (cnt = salt_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r()
471 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r()
475 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha256_crypt_r()
480 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
487 if (cnt % 3 != 0) { in php_sha256_crypt_r()
492 if (cnt % 7 != 0) { in php_sha256_crypt_r()
497 if ((cnt & 1) != 0) { in php_sha256_crypt_r()
697 int cnt, i; in main() local
703 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
705 sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx); in main()
707 if (memcmp(tests[cnt].result, sum, 32) != 0) { in main()
708 printf("test %d run %d failed\n", cnt, 1); in main()
713 for (i = 0; tests[cnt].input[i] != '\0'; ++i) { in main()
714 sha256_process_bytes(&tests[cnt].input[i], 1, &ctx); in main()
717 if (memcmp(tests[cnt].result, sum, 32) != 0) { in main()
718 printf("test %d run %d failed\n", cnt, 2); in main()
734 printf("test %d failed\n", cnt); in main()
738 for (cnt = 0; cnt < ntests2; ++cnt) { in main()
739 char *cp = php_sha256_crypt(tests2[cnt].input, tests2[cnt].salt); in main()
740 if (strcmp(cp, tests2[cnt].expected) != 0) { in main()
741 printf("test %d: expected \"%s\", got \"%s\"\n", cnt, tests2[cnt].expected, cp); in main()