Home
last modified time | relevance | path

Searched refs:cnt (Results 1 – 25 of 60) sorted by relevance

123

/php-src/ext/standard/
H A Dcrypt_sha256.c333 size_t cnt; in php_sha256_crypt_r() local
417 for (cnt = key_len; cnt > 32; cnt -= 32) { in php_sha256_crypt_r()
424 for (cnt = key_len; cnt > 0; cnt >>= 1) { 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()
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()
475 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha256_crypt_r()
697 int cnt, i; in main() local
703 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
[all …]
H A Dcrypt_sha512.c455 for (cnt = key_len; cnt > 64; cnt -= 64) { in php_sha512_crypt_r()
462 for (cnt = key_len; cnt > 0; cnt >>= 1) { 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()
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()
514 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha512_crypt_r()
766 int cnt; in main() local
775 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main()
809 for (cnt = 0; cnt < ntests2; ++cnt) { in main()
[all …]
/php-src/ext/opcache/tests/jit/
H A Dreg_alloc_010.phpt10 for (; $cnt < 6; $cnt++) {
20 Warning: Undefined variable $cnt in %sreg_alloc_010.php on line 3
22 Warning: Undefined variable $cnt in %sreg_alloc_010.php on line 3
H A Doss-fuzz-65498.phpt12 for ($cnt=0; $cnt<6; $cnt++)
H A Dfetch_obj_010.phpt10 for($cnt=0;$cnt<3;$cnt++) {
H A Dfetch_dim_r_013.phpt11 for($cnt = 0; $cnt < 6; $cnt++) {
H A Dassign_052.phpt11 for($cnt = 0; $cnt < 6; $cnt++) {
H A Drope_002.phpt11 for ($cnt = 0; $cnt < 6; $cnt++) {
H A Dassign_025.phpt14 for($cnt=0;$cnt<6;$cnt++) {
H A Dreg_alloc_011.phpt10 for ($cnt=0;$cnt<6;$cnt++) {
H A Dreg_alloc_016.phpt10 for($cnt = 0; $cnt < 6; $cnt++) {
H A Dassign_op_009.phpt11 for($cnt=0;$cnt<6;$cnt++) {
H A Dmul_004.phpt18 $res = $a * 8; // shift cnt: 3
23 $res = 16 * $a; // shift cnt: 4
28 $res = $a * 0x10000000; // shift cnt: 29
33 $res = $a * 0x100000000; // shift cnt: 32
H A Dbug79888.phpt27 $cnt = 0;
31 if (testPrime($i)) $cnt++;
33 echo "Primect: {$cnt}\n";
H A Dreg_alloc_014.phpt10 for($cnt = 0; $cnt < 6; $cnt++) {
H A Dqm_assign_003.phpt10 for($cnt2=0;$cnt<6;$cnt++) {
/php-src/ext/standard/tests/filters/
H A Dbug22538.phpt21 $cnt = $size;
22 while (($cnt -= $str_len) > 0) {
25 $cnt = $size - ($str_len + $cnt);
33 var_dump($cnt);
/php-src/ext/opcache/tests/opt/
H A Dinference_024.phpt10 for ($cnt = 0; $cnt < 6; $cnt++) {
H A Dinference_019.phpt11 for($cnt = 0; $cnt < 6; $cnt++) {
/php-src/ext/spl/tests/
H A Dbug70561.phpt7 $cnt = 0;
10 $cnt++;
15 $di->seek($cnt+1);
/php-src/ext/mbstring/tests/
H A Dillformed_utf_sequences.phpt58 $cnt = 0;
62 $cnt++;
67 var_dump($cnt);
84 $cnt = 0;
88 $cnt++;
93 var_dump($cnt);
97 $cnt = 0;
101 $cnt++;
110 $cnt = 0;
125 $cnt = 0;
[all …]
/php-src/ext/session/tests/
H A Dbug65475.phpt17 $_SESSION['cnt'] = 1;
23 $_SESSION['cnt']++;
28 var_dump($_SESSION['cnt']); // Should be int(2)
/php-src/scripts/dev/
H A Dsearch_underscores.php69 $cnt = $cnt_modules + $cnt_classes + $cnt_methods; variable
76 printf("Names: %5d\n", $cnt);
77 printf("Errors: %5d (%.1f%%)\n", $err, round($err * 100 / $cnt, 1));
/php-src/ext/gd/tests/
H A Dimagefttext.phpt26 $cnt = 0;
30 ++$cnt;
38 return ($cnt < ($sx * $sy));
/php-src/ext/zlib/tests/
H A Dbug75273.phpt13 $cnt = 0;
14 while ($cnt < 256) {
18 $cnt++;

Completed in 43 milliseconds

123