/PHP-8.3/ext/fileinfo/ |
H A D | php_libmagic.c | 22 int i, j; in convert_libmagic_pattern() local 28 j += 2; in convert_libmagic_pattern() 31 j += 4; in convert_libmagic_pattern() 34 j++; in convert_libmagic_pattern() 40 j = 0; in convert_libmagic_pattern() 41 ZSTR_VAL(t)[j++] = '~'; in convert_libmagic_pattern() 47 ZSTR_VAL(t)[j] = '~'; in convert_libmagic_pattern() 53 ZSTR_VAL(t)[j] = '0'; in convert_libmagic_pattern() 60 ZSTR_VAL(t)[j++] = '~'; in convert_libmagic_pattern() 68 ZSTR_VAL(t)[j]='\0'; in convert_libmagic_pattern() [all …]
|
/PHP-8.3/ext/hash/ |
H A D | hash_ripemd.c | 228 for(j = 0; j < 16; j++) { in RIPEMD128Transform() 235 for(j = 16; j < 32; j++) { in RIPEMD128Transform() 242 for(j = 32; j < 48; j++) { in RIPEMD128Transform() 249 for(j = 48; j < 64; j++) { in RIPEMD128Transform() 320 for(j = 0; j < 16; j++) { in RIPEMD256Transform() 328 for(j = 16; j < 32; j++) { in RIPEMD256Transform() 336 for(j = 32; j < 48; j++) { in RIPEMD256Transform() 344 for(j = 48; j < 64; j++) { in RIPEMD256Transform() 419 for(j = 0; j < 16; j++) { in RIPEMD160Transform() 426 for(j = 16; j < 32; j++) { in RIPEMD160Transform() [all …]
|
/PHP-8.3/Zend/Optimizer/ |
H A D | zend_cfg.c | 124 for (j = 0; j < op_array->last_try_catch; j++) { in zend_mark_reachable_blocks() 211 for (j = b->start; j < b->start + b->len; j++) { in zend_mark_reachable_blocks() 449 for (j = 0; j < op_array->last_try_catch; j++) { in zend_build_cfg() 494 for (j = 0; j < blocks_count; j++) { in zend_build_cfg() 628 for (j = 0; j < cfg->blocks_count; j++) { in zend_cfg_build_predecessors() 695 for (j = 1; j < blocks_count; j++) { in zend_cfg_compute_dominators_tree() 724 for (j = 1; j < blocks_count; j++) { in zend_cfg_compute_dominators_tree() 745 for (j = 0; j < blocks_count; j++) { in zend_cfg_compute_dominators_tree() 810 for (j = blocks[i].children; j >= 0; j = blocks[j].next_child) { in zend_cfg_identify_loops() 816 for (j = 0; j < blocks[i].successors_count; j++) { in zend_cfg_identify_loops() [all …]
|
H A D | nop_removal.c | 37 int j; in zend_optimizer_nop_removal() local 84 for (j = 0; j < op_array->last_try_catch; j++) { in zend_optimizer_nop_removal() 85 op_array->try_catch_array[j].try_op -= shiftlist[op_array->try_catch_array[j].try_op]; in zend_optimizer_nop_removal() 86 op_array->try_catch_array[j].catch_op -= shiftlist[op_array->try_catch_array[j].catch_op]; in zend_optimizer_nop_removal() 87 if (op_array->try_catch_array[j].finally_op) { in zend_optimizer_nop_removal() 88 op_array->try_catch_array[j].finally_op -= shiftlist[op_array->try_catch_array[j].finally_op]; in zend_optimizer_nop_removal() 89 op_array->try_catch_array[j].finally_end -= shiftlist[op_array->try_catch_array[j].finally_end]; in zend_optimizer_nop_removal()
|
H A D | zend_dfg.c | 258 int j; in zend_build_dfg() local 268 for (j = 0; j < blocks_count; j++) { in zend_build_dfg() 277 end = opline + blocks[j].len; in zend_build_dfg() 278 b_use = DFG_BITSET(use, set_size, j); in zend_build_dfg() 279 b_def = DFG_BITSET(def, set_size, j); in zend_build_dfg() 294 for (j = 0; j < blocks_count; j++) { in zend_build_dfg() 295 zend_bitset_incl(worklist, j); in zend_build_dfg() 301 zend_bitset_excl(worklist, j); in zend_build_dfg() 306 if (blocks[j].successors_count != 0) { in zend_build_dfg() 307 …zend_bitset_copy(DFG_BITSET(out, set_size, j), DFG_BITSET(in, set_size, blocks[j].successors[0]), … in zend_build_dfg() [all …]
|
H A D | zend_ssa.c | 246 for (j = 0; j < blocks_count; j++) { in place_essa_pis() 849 for (j = 0; j < blocks[succ].predecessors_count; j++) { in zend_ssa_rename() 858 for (j = 0; j < blocks[succ].predecessors_count; j++) in zend_ssa_rename() 896 j = blocks[j].next_child; in zend_ssa_rename() 958 for (j = 0; j < blocks_count; j++) { in zend_build_ssa() 994 for (j = 0; j < blocks_count; j++) { in zend_build_ssa() 1038 for (j = 0; j < op_array->last_var; j++) { in zend_build_ssa() 1039 var[j] = j; in zend_build_ssa() 1365 for (j = 0; j < predecessors_count; j++) { in zend_ssa_remove_phi_source() 1437 for (j = 0; j < next_block->predecessors_count; j++) { in zend_ssa_remove_predecessor() [all …]
|
H A D | compact_literals.c | 309 j = 0; in zend_optimizer_compact_literals() 328 j++; in zend_optimizer_compact_literals() 340 j++; in zend_optimizer_compact_literals() 352 j++; in zend_optimizer_compact_literals() 368 j++; in zend_optimizer_compact_literals() 388 j += 2; in zend_optimizer_compact_literals() 408 j++; in zend_optimizer_compact_literals() 435 j++; in zend_optimizer_compact_literals() 440 j++; in zend_optimizer_compact_literals() 455 j++; in zend_optimizer_compact_literals() [all …]
|
/PHP-8.3/Zend/ |
H A D | zend_sort.c | 115 j = i - siz; in zend_insert_sort() 120 j -= siz; in zend_insert_sort() 122 j += siz; in zend_insert_sort() 131 j = i - siz; in zend_insert_sort() 136 j -= siz2; in zend_insert_sort() 138 j += siz; in zend_insert_sort() 148 j -= siz; in zend_insert_sort() 255 char *i, *j; in zend_sort() local 278 j -= siz; in zend_sort() 283 j -= siz; in zend_sort() [all …]
|
/PHP-8.3/tests/lang/ |
H A D | 024.phpt | 29 $j = 3; 112 $i=$j=0; 116 $j++; 149 $j = $i*2+$j*($i++); 172 $j += ++$i; /* ++$i --> $i==2, $j += 2 --> $j==2 */ 183 $j *= $i; /* $j *= 2 --> $j == 4 */ 219 $j=20; 244 ${"test$i$j"}[$k] = $i+$j+$k; 328 echo " \$j=$j\n"; 354 echo " \$j=$j\n"; [all …]
|
H A D | 023.phpt | 198 $j=3<br> 201 $j=4<br> 205 $j=0<br> 206 $j=1<br> 207 $j=2<br> 214 $j=3<br> 217 $j=4<br> 221 $j=0<br> 222 $j=1<br> 223 $j=2<br> [all …]
|
/PHP-8.3/ext/mbstring/tests/ |
H A D | mb_strcut_negative_length.phpt | 7 var_dump(mb_strcut('Déjà vu', 1, -3)); 8 var_dump(mb_strcut('Déjà vu', 1, -4)); 9 var_dump(mb_strcut('Déjà vu', 1, -5)); 10 var_dump(mb_strcut('Déjà vu', 1, -6)); 11 var_dump(mb_strcut('Déjà vu', 1, -999)); 14 string(5) "éjà" 15 string(3) "éj" 16 string(3) "éj"
|
/PHP-8.3/ext/gd/tests/ |
H A D | bug43073.phpt | 44 for ($j = 0; $j < 8; $j++) { 45 if ($bbox[$j] >= $exp[$i][$j] - 1 && $bbox[$j] <= $exp[$i][$j] + 1) { 48 echo "(expected $exp[$i][$j], got $bbox[$j])";
|
H A D | imagecopyresampled_variation1.phpt | 21 for ($j = 0; $j < imagesy($im); $j++) { 22 imagesetpixel($im, $i, $j, ($i%2 != $j%2 ? $solid : $transparent)); 35 for ($j = 0; $j < imagesy($copy); $j++) { 36 if (imagecolorat($copy, $i, $j) != $color) {
|
H A D | bug74435.phpt | 12 for ($j = 0; $j < $height; $j += 16) { 13 if (($index = imagecolorat($im, $i, $j)) >= 2) { 16 echo "unexpected color at ($i, $j)\n";
|
/PHP-8.3/ext/opcache/tests/jit/ |
H A D | bw_not_002.phpt | 12 $j = 0; 14 $a = ~$j - $a = $j + $j = !$j = $j++;
|
H A D | reg_alloc_013.phpt | 11 $j++; 12 $j++ % $j -= $a % $a = $j; 18 Warning: Undefined variable $j in %sreg_alloc_013.php on line 3
|
H A D | add_013.phpt | 11 $j = 2; 12 for (; $a = $j - 7 + $y = $a - 7; $a = $a + 1 / 3) { 13 $j++; 14 if ($j > 4) break;
|
/PHP-8.3/ext/standard/tests/strings/ |
H A D | bug78612.phpt | 10 for ($j=0; $j<10; $j++) { 11 $find_replace[$_a + $j] = $_b + $j;
|
/PHP-8.3/Zend/tests/ |
H A D | call_user_func_008.phpt | 12 $i = $j = 0; 13 var_dump(call_user_func('test', $i, $j)); 14 var_dump($i, $j); 16 var_dump(call_user_func_array('test', [$i, $j])); 17 var_dump($i, $j); 19 $x =& $i; $y =& $j; 20 var_dump(call_user_func('test', $i, $j)); 21 var_dump($i, $j); 23 var_dump(call_user_func_array('test', [$i, $j])); 24 var_dump($i, $j);
|
/PHP-8.3/ext/mbstring/ |
H A D | php_unicode.c | 380 int j = i - 1; in php_unicode_convert_case() local 381 while (j >= 0 && php_unicode_is_case_ignorable(wchar_buf[j])) { in php_unicode_convert_case() 382 j--; in php_unicode_convert_case() 386 j = i + 1; in php_unicode_convert_case() 387 while (j < out_len && php_unicode_is_case_ignorable(wchar_buf[j])) { in php_unicode_convert_case() 388 j++; in php_unicode_convert_case() 433 int j = i - 1; in php_unicode_convert_case() local 434 while (j >= 0 && php_unicode_is_case_ignorable(wchar_buf[j])) { in php_unicode_convert_case() 435 j--; in php_unicode_convert_case() 438 j = i + 1; in php_unicode_convert_case() [all …]
|
/PHP-8.3/scripts/dev/ |
H A D | check_parameters.php | 213 $j = -1; 242 check_param($params, ++$j, 'bool*', $optional); 252 check_param($params, ++$j, 'zval**', $optional); 253 check_param($params, ++$j, 'int*', $optional); 262 if ($optional && !$params[$j-1][2] && !$params[$j][2] 263 … && $params[$j-1][0] !== '**dummy**' && $params[$j][0] !== '**dummy**') { 264 … error("one of optional vars {$params[$j-1][0]} or {$params[$j][0]} must be initialized", 1); 270 check_param($params, ++$j, 'zend_class_entry**', false); 324 $j = 0; 329 $j += strlen($lines[$i]) + strlen(@$lines[++$i]); [all …]
|
/PHP-8.3/ext/standard/ |
H A D | crypt_freesec.c | 226 for (j = 0; j < 64; j++) { in _crypt_extended_init() 227 b = (j & 0x20) | ((j & 1) << 4) | ((j >> 1) & 0xf); in _crypt_extended_init() 237 for (j = 0; j < 64; j++) in _crypt_extended_init() 277 for (j = 0; j < 8; j++) { in _crypt_extended_init() 278 inbit = 8 * k + j; in _crypt_extended_init() 294 for (j = 0; j < 7; j++) { in _crypt_extended_init() 295 inbit = 8 * k + j; in _crypt_extended_init() 307 for (j = 0; j < 7; j++) { in _crypt_extended_init() 308 inbit = 7 * k + j; in _crypt_extended_init() 331 for (j = 0; j < 8; j++) { in _crypt_extended_init() [all …]
|
/PHP-8.3/ext/date/tests/ |
H A D | date_diff.phpt | 23 for ( $j = 0; $j < COUNT * 12; $j++) 25 $diff = date_diff( $dates[$i], $dates[$j] ); 29 $dates[$j]->format( 'Y-m-d' ), 37 if ( $current > $dates[$j] ) 45 if ( $current != $dates[$j] ) 51 $dates[$j]->format( 'Y-m-d' ), ")\n";
|
/PHP-8.3/ext/gd/libgd/ |
H A D | gd_filter.c | 337 int x, y, i, j, new_a; in gdImageConvolution() local 368 for (j=0; j<3; j++) { in gdImageConvolution() 399 int x, y, i, j; in gdImageSelectiveBlur() local 429 for (j=0; j<3; j++) { in gdImageSelectiveBlur() 445 flt_r[j][i] = 1.0f; in gdImageSelectiveBlur() 456 flt_g[j][i] = 1.0f; in gdImageSelectiveBlur() 467 flt_b[j][i] = 1.0f; in gdImageSelectiveBlur() 471 flt_r_sum += flt_r[j][i]; in gdImageSelectiveBlur() 472 flt_g_sum += flt_g[j][i]; in gdImageSelectiveBlur() 477 for (j=0; j<3; j++) { in gdImageSelectiveBlur() [all …]
|
H A D | gdkanji.c | 379 int p1, p2, i, j; in do_convert() 383 j = 0; in do_convert() 413 to[j++] = SS2; in do_convert() 417 to[j++] = from[i]; in do_convert() 427 to[j++] = p1; in do_convert() 431 to[j++] = p1; in do_convert() 448 if (j >= BUFSIZ) in do_convert() 454 to[j] = '\0'; in do_convert() 462 int p1, p2, i, j; in do_check_and_conv() local 513 j = 0; in do_check_and_conv() [all …]
|