Home
last modified time | relevance | path

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

123

/PHP-8.1/ext/standard/
H A Dcrypt_sha256.c339 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 Dcrypt_sha512.c450 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.1/ext/opcache/tests/jit/
H A Dreg_alloc_010.phpt11 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 Dfetch_obj_010.phpt11 for($cnt=0;$cnt<3;$cnt++) {
H A Dfetch_dim_r_013.phpt12 for($cnt = 0; $cnt < 6; $cnt++) {
H A Dassign_052.phpt12 for($cnt = 0; $cnt < 6; $cnt++) {
H A Drope_002.phpt12 for ($cnt = 0; $cnt < 6; $cnt++) {
H A Dassign_025.phpt15 for($cnt=0;$cnt<6;$cnt++) {
H A Dreg_alloc_014.phpt11 for($cnt = 0; $cnt < 6; $cnt++) {
H A Dreg_alloc_016.phpt11 for($cnt = 0; $cnt < 6; $cnt++) {
H A Dreg_alloc_011.phpt11 for ($cnt=0;$cnt<6;$cnt++) {
H A Dassign_op_009.phpt12 for($cnt=0;$cnt<6;$cnt++) {
H A Dbug79888.phpt28 $cnt = 0;
32 if (testPrime($i)) $cnt++;
34 echo "Primect: {$cnt}\n";
H A Dmul_004.phpt19 $res = $a * 8; // shift cnt: 3
24 $res = 16 * $a; // shift cnt: 4
29 $res = $a * 0x10000000; // shift cnt: 29
34 $res = $a * 0x100000000; // shift cnt: 32
H A Dqm_assign_003.phpt11 for($cnt2=0;$cnt<6;$cnt++) {
/PHP-8.1/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-8.1/ext/spl/tests/
H A Dbug70561.phpt7 $cnt = 0;
10 $cnt++;
15 $di->seek($cnt+1);
/PHP-8.1/ext/mbstring/tests/
H A Dillformed_utf_sequences.phpt59 $cnt = 0;
63 $cnt++;
68 var_dump($cnt);
85 $cnt = 0;
89 $cnt++;
94 var_dump($cnt);
98 $cnt = 0;
102 $cnt++;
111 $cnt = 0;
126 $cnt = 0;
[all …]
/PHP-8.1/ext/session/tests/
H A Dbug65475.phpt17 $_SESSION['cnt'] = 1;
23 $_SESSION['cnt']++;
28 var_dump($_SESSION['cnt']); // Should be int(2)
/PHP-8.1/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-8.1/ext/gd/tests/
H A Dimagefttext.phpt26 $cnt = 0;
30 ++$cnt;
38 return ($cnt < ($sx * $sy));
/PHP-8.1/ext/zlib/tests/
H A Dbug75273.phpt13 $cnt = 0;
14 while ($cnt < 256) {
18 $cnt++;
/PHP-8.1/tests/classes/
H A Dfactory_and_singleton_001.phpt9 static private $cnt = 0;
21 test::$cnt++;
30 test::$cnt--;
46 return test::$cnt;
H A Dfactory_and_singleton_002.phpt9 static private $cnt = 0;
21 test::$cnt++;
30 test::$cnt--;
46 return test::$cnt;
/PHP-8.1/ext/standard/tests/file/
H A Dproc_open01.phpt25 $cnt = '';
45 $cnt .= $buf;
48 var_dump($cnt);

Completed in 50 milliseconds

123