Searched refs:cnt (Results 1 – 25 of 50) sorted by relevance
12
/PHP-8.0/ext/standard/ |
H A D | crypt_sha256.c | 339 size_t cnt; in php_sha256_crypt_r() local 416 for (cnt = key_len; cnt > 32; cnt -= 32) { in php_sha256_crypt_r() 423 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha256_crypt_r() 438 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha256_crypt_r() 447 for (cnt = key_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r() 456 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha256_crypt_r() 465 for (cnt = salt_len; cnt >= 32; cnt -= 32) { in php_sha256_crypt_r() 472 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha256_crypt_r() 686 int cnt, i; in main() local 692 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main() [all …]
|
H A D | crypt_sha512.c | 450 for (cnt = key_len; cnt > 64; cnt -= 64) { in php_sha512_crypt_r() 457 for (cnt = key_len; cnt > 0; cnt >>= 1) { in php_sha512_crypt_r() 472 for (cnt = 0; cnt < key_len; ++cnt) { in php_sha512_crypt_r() 481 for (cnt = key_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r() 491 for (cnt = 0; cnt < (size_t) (16 + alt_result[0]); ++cnt) { in php_sha512_crypt_r() 500 for (cnt = salt_len; cnt >= 64; cnt -= 64) { in php_sha512_crypt_r() 507 for (cnt = 0; cnt < rounds; ++cnt) { in php_sha512_crypt_r() 751 int cnt; in main() local 760 for (cnt = 0; cnt < (int) ntests; ++cnt) { in main() 794 for (cnt = 0; cnt < ntests2; ++cnt) { in main() [all …]
|
/PHP-8.0/ext/opcache/tests/jit/ |
H A D | reg_alloc_010.phpt | 11 for (; $cnt < 6; $cnt++) { 21 Warning: Undefined variable $cnt in %sreg_alloc_010.php on line 3 23 Warning: Undefined variable $cnt in %sreg_alloc_010.php on line 3
|
H A D | qm_assign_003.phpt | 11 for($cnt2=0;$cnt<6;$cnt++) { 26 Warning: Undefined variable $cnt in %sqm_assign_003.php on line 3 30 Warning: Undefined variable $cnt in %sqm_assign_003.php on line 3
|
H A D | fetch_dim_r_013.phpt | 12 for($cnt = 0; $cnt < 6; $cnt++) {
|
H A D | assign_052.phpt | 12 for($cnt = 0; $cnt < 6; $cnt++) {
|
H A D | reg_alloc_014.phpt | 11 for($cnt = 0; $cnt < 6; $cnt++) {
|
H A D | assign_025.phpt | 15 for($cnt=0;$cnt<6;$cnt++) {
|
H A D | reg_alloc_011.phpt | 11 for ($cnt=0;$cnt<6;$cnt++) {
|
H A D | bug79888.phpt | 28 $cnt = 0; 32 if (testPrime($i)) $cnt++; 34 echo "Primect: {$cnt}\n";
|
/PHP-8.0/ext/standard/tests/filters/ |
H A D | bug22538.phpt | 21 $cnt = $size; 22 while (($cnt -= $str_len) > 0) { 25 $cnt = $size - ($str_len + $cnt); 33 var_dump($cnt);
|
/PHP-8.0/ext/spl/tests/ |
H A D | bug70561.phpt | 7 $cnt = 0; 10 $cnt++; 15 $di->seek($cnt+1);
|
/PHP-8.0/ext/mbstring/tests/ |
H A D | illformed_utf_sequences.phpt | 62 $cnt = 0; 66 $cnt++; 71 var_dump($cnt); 88 $cnt = 0; 92 $cnt++; 97 var_dump($cnt); 101 $cnt = 0; 105 $cnt++; 114 $cnt = 0; 129 $cnt = 0; [all …]
|
H A D | mb_str_split_jp.phpt | 35 $cnt = count(mb_str_split($enc,$i,$cs)); 36 if($ceil != $cnt){ 37 echo "$cs WRONG CHUNKS NUMBER: expected/actual: $ceil/$cnt\n";
|
H A D | mb_str_split_ru.phpt | 35 $cnt = count(mb_str_split($enc,$i,$cs)); 36 if($ceil != $cnt){ 37 echo "$cs WRONG CHUNKS NUMBER: expected/actual: $ceil/$cnt\n";
|
/PHP-8.0/ext/session/tests/ |
H A D | bug65475.phpt | 15 $_SESSION['cnt'] = 1; 21 $_SESSION['cnt']++; 26 var_dump($_SESSION['cnt']); // Should be int(2)
|
/PHP-8.0/scripts/dev/ |
H A D | search_underscores.php | 69 $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-8.0/ext/gd/tests/ |
H A D | imagefttext.phpt | 27 $cnt = 0; 31 ++$cnt; 39 return ($cnt < ($sx * $sy));
|
/PHP-8.0/tests/classes/ |
H A D | factory_and_singleton_001.phpt | 9 static private $cnt = 0; 21 test::$cnt++; 30 test::$cnt--; 46 return test::$cnt;
|
H A D | factory_and_singleton_002.phpt | 9 static private $cnt = 0; 21 test::$cnt++; 30 test::$cnt--; 46 return test::$cnt;
|
/PHP-8.0/ext/zlib/tests/ |
H A D | bug75273.phpt | 15 $cnt = 0; 16 while ($cnt < 256) { 20 $cnt++;
|
/PHP-8.0/ext/standard/tests/file/ |
H A D | proc_open01.phpt | 25 $cnt = ''; 45 $cnt .= $buf; 48 var_dump($cnt);
|
/PHP-8.0/Zend/tests/ |
H A D | bug43201.phpt | 18 for($cnt=0;$cnt<6;$cnt++) { 20 $c->arr[$cnt]["k2"] = $ref;
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | 067.phpt | 51 $cnt = 0; 55 $cnt += $a[0] + $a[1] + $a[2]; 63 var_dump($cnt);
|
/PHP-8.0/ext/gd/libgd/ |
H A D | wbmp.c | 66 int cnt, l, accu; in putmbi() local 69 cnt = 0; in putmbi() 72 accu += i & 0x7f << 7 * cnt++; in putmbi() 75 for (l = cnt - 1; l > 0; l--) in putmbi()
|
Completed in 35 milliseconds
12