Home
last modified time | relevance | path

Searched refs:j (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/PHP-7.2/ext/hash/
H A Dhash_ripemd.c216 for(j = 0; j < 16; j++) { in RIPEMD128Transform()
223 for(j = 16; j < 32; j++) { in RIPEMD128Transform()
230 for(j = 32; j < 48; j++) { in RIPEMD128Transform()
237 for(j = 48; j < 64; j++) { in RIPEMD128Transform()
307 for(j = 0; j < 16; j++) { in RIPEMD256Transform()
315 for(j = 16; j < 32; j++) { in RIPEMD256Transform()
323 for(j = 32; j < 48; j++) { in RIPEMD256Transform()
331 for(j = 48; j < 64; j++) { in RIPEMD256Transform()
405 for(j = 0; j < 16; j++) { in RIPEMD160Transform()
412 for(j = 16; j < 32; j++) { in RIPEMD160Transform()
[all …]
/PHP-7.2/ext/opcache/Optimizer/
H A Dzend_dfg.c31 int j; in zend_build_dfg() local
41 for (j = 0; j < blocks_count; j++) { in zend_build_dfg()
48 end = opline + blocks[j].len; in zend_build_dfg()
56 DFG_SET(use, set_size, j, var_num); in zend_build_dfg()
62 DFG_SET(use, set_size, j, var_num); in zend_build_dfg()
134 DFG_SET(use, set_size, j, var_num); in zend_build_dfg()
196 DFG_SET(def, set_size, j, var_num); in zend_build_dfg()
209 for (j = 0; j < blocks_count; j++) { in zend_build_dfg()
210 zend_bitset_incl(worklist, j); in zend_build_dfg()
216 zend_bitset_excl(worklist, j); in zend_build_dfg()
[all …]
H A Dnop_removal.c38 int j; in zend_optimizer_nop_removal() local
85 for (j = 0; j < op_array->last_live_range; j++) { in zend_optimizer_nop_removal()
86 op_array->live_range[j].start -= shiftlist[op_array->live_range[j].start]; in zend_optimizer_nop_removal()
87 op_array->live_range[j].end -= shiftlist[op_array->live_range[j].end]; in zend_optimizer_nop_removal()
91 for (j = 0; j < op_array->last_try_catch; j++) { in zend_optimizer_nop_removal()
92 op_array->try_catch_array[j].try_op -= shiftlist[op_array->try_catch_array[j].try_op]; in zend_optimizer_nop_removal()
93 op_array->try_catch_array[j].catch_op -= shiftlist[op_array->try_catch_array[j].catch_op]; in zend_optimizer_nop_removal()
94 if (op_array->try_catch_array[j].finally_op) { in zend_optimizer_nop_removal()
95 op_array->try_catch_array[j].finally_op -= shiftlist[op_array->try_catch_array[j].finally_op]; in zend_optimizer_nop_removal()
96 op_array->try_catch_array[j].finally_end -= shiftlist[op_array->try_catch_array[j].finally_end]; in zend_optimizer_nop_removal()
H A Dzend_cfg.c122 for (j = 0; j < op_array->last_live_range; j++) { in zend_mark_reachable_blocks()
165 for (j = 0; j < op_array->last_try_catch; j++) { in zend_mark_reachable_blocks()
455 for (j = 0; j < op_array->last_live_range; j++) { in zend_build_cfg()
462 for (j = 0; j < op_array->last_try_catch; j++) { in zend_build_cfg()
507 for (j = 0; j < blocks_count; j++) { in zend_build_cfg()
649 for (j = 0; j < cfg->blocks_count; j++) { in zend_cfg_build_predecessors()
713 for (j = 1; j < blocks_count; j++) { in zend_cfg_compute_dominators_tree()
744 for (j = 1; j < blocks_count; j++) { in zend_cfg_compute_dominators_tree()
765 for (j = 0; j < blocks_count; j++) { in zend_cfg_compute_dominators_tree()
839 for (j = blocks[i].children; j >= 0; j = blocks[j].next_child) { in zend_cfg_identify_loops()
[all …]
H A Dcompact_literals.c341 j = 0; in zend_optimizer_compact_literals()
362 j++; in zend_optimizer_compact_literals()
371 j++; in zend_optimizer_compact_literals()
381 j++; in zend_optimizer_compact_literals()
392 j++; in zend_optimizer_compact_literals()
407 j++; in zend_optimizer_compact_literals()
421 j++; in zend_optimizer_compact_literals()
478 j++; in zend_optimizer_compact_literals()
483 j++; in zend_optimizer_compact_literals()
496 j++; in zend_optimizer_compact_literals()
[all …]
H A Dzend_ssa.c244 for (j = 0; j < blocks_count; j++) { in place_essa_pis()
803 for (j = 0; j < blocks[succ].predecessors_count; j++) { in zend_ssa_rename()
812 for (j = 0; j < blocks[succ].predecessors_count; j++) in zend_ssa_rename()
846 j = blocks[j].next_child; in zend_ssa_rename()
912 for (j = 0; j < blocks_count; j++) { in zend_build_ssa()
948 for (j = 0; j < blocks_count; j++) { in zend_build_ssa()
992 for (j = 0; j < op_array->last_var; j++) { in zend_build_ssa()
993 var[j] = j; in zend_build_ssa()
1285 for (j = 0; j < predecessors_count; j++) { in zend_ssa_remove_phi_source()
1361 for (j = 0; j < next_block->predecessors_count; j++) { in zend_ssa_remove_predecessor()
[all …]
/PHP-7.2/tests/lang/
H A D024.phpt29 $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 D023.phpt198 $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-7.2/Zend/
H A Dzend_sort.c184 j = i - siz; in zend_insert_sort()
189 j -= siz; in zend_insert_sort()
191 j += siz; in zend_insert_sort()
200 j = i - siz; in zend_insert_sort()
205 j -= siz2; in zend_insert_sort()
207 j += siz; in zend_insert_sort()
217 j -= siz; in zend_insert_sort()
324 char *i, *j; in zend_sort() local
347 j -= siz; in zend_sort()
352 j -= siz; in zend_sort()
[all …]
/PHP-7.2/ext/skeleton/
H A Dcreate_stubs12 function convert(i, j, t)
14 type = argtypes[i,j]
15 name = argnames[i,j]
16 opt = optionals[i,j]
204 for (j = 0; j < maxargs[i]; j++) {
214 if (j > minargs[i]-1) {
221 argnames[i,j] \
226 argnames[i,j] \
230 if (j > 0) proto = proto ", "
231 proto = proto argtypes[i,j] " " argnames[i,j]
[all …]
/PHP-7.2/ext/mbstring/ucgendat/
H A Ducgendat.c308 for (j = rlp->used; j > i; j -= 2) { in add_range()
441 for (j = rlp->used; j > i; j -= 2) { in ordered_range_insert()
500 for (j = *pdecomps_used; j > i; j--) in add_decomp()
568 for (j = title_used; j > i; j--) in add_title()
615 for (j = upper_used; j > i; j--) in add_upper()
662 for (j = lower_used; j > i; j--) in add_lower()
733 for (j = ccl_used; j > i; j -= 3) { in ordered_ccl_insert()
812 for (j = ncodes_used; j > i; j--) { in add_number()
1405 for (j=0; j<proptbl[i].used; j++) { in write_cdata()
1630 for (j=0; j<decomps[i].used; j++) { in write_cdata()
[all …]
/PHP-7.2/ext/gd/tests/
H A Dbug43073.phpt43 for ($j = 0; $j < 8; $j++) {
44 if ($bbox[$j] >= $exp[$i][$j] - 1 && $bbox[$j] <= $exp[$i][$j] + 1) {
47 echo "(expected $exp[$i][$j], got $bbox[$j])";
H A Dimagecopyresampled_variation1.phpt23 for ($j = 0; $j < imagesy($im); $j++) {
24 imagesetpixel($im, $i, $j, ($i%2 != $j%2 ? $solid : $transparent));
37 for ($j = 0; $j < imagesy($copy); $j++) {
38 if (imagecolorat($copy, $i, $j) != $color) {
H A Dbug74435.phpt14 for ($j = 0; $j < $height; $j += 16) {
15 if (($index = imagecolorat($im, $i, $j)) >= 2) {
18 echo "unexpected color at ($i, $j)\n";
/PHP-7.2/ext/standard/tests/strings/
H A Dbug78612.phpt10 for ($j=0; $j<10; $j++) {
11 $find_replace[$_a + $j] = $_b + $j;
/PHP-7.2/ext/gd/libgd/
H A Dgd_filter.c239 int x, y, i, j, new_a; in gdImageConvolution() local
269 for (j=0; j<3; j++) { in gdImageConvolution()
300 int x, y, i, j; in gdImageSelectiveBlur() local
330 for (j=0; j<3; j++) { in gdImageSelectiveBlur()
346 flt_r[j][i] = 1.0f; in gdImageSelectiveBlur()
357 flt_g[j][i] = 1.0f; in gdImageSelectiveBlur()
368 flt_b[j][i] = 1.0f; in gdImageSelectiveBlur()
372 flt_r_sum += flt_r[j][i]; in gdImageSelectiveBlur()
373 flt_g_sum += flt_g[j][i]; in gdImageSelectiveBlur()
378 for (j=0; j<3; j++) { in gdImageSelectiveBlur()
[all …]
H A Dgdkanji.c385 int p1, p2, i, j; in do_convert()
389 j = 0; in do_convert()
419 to[j++] = SS2; in do_convert()
423 to[j++] = from[i]; in do_convert()
433 to[j++] = p1; in do_convert()
437 to[j++] = p1; in do_convert()
454 if (j >= BUFSIZ) in do_convert()
460 to[j] = '\0'; in do_convert()
468 int p1, p2, i, j; in do_check_and_conv() local
519 j = 0; in do_check_and_conv()
[all …]
/PHP-7.2/Zend/tests/
H A Dcall_user_func_008.phpt12 $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-7.2/scripts/dev/
H A Dcheck_parameters.php216 $j = -1;
245 check_param($params, ++$j, 'zend_bool*', $optional);
255 check_param($params, ++$j, 'zval**', $optional);
256 check_param($params, ++$j, 'int*', $optional);
265 if ($optional && !$params[$j-1][2] && !$params[$j][2]
266 && $params[$j-1][0] !== '**dummy**' && $params[$j][0] !== '**dummy**') {
267 error("one of optional vars {$params[$j-1][0]} or {$params[$j][0]} must be initialized", 1);
273 check_param($params, ++$j, 'zend_class_entry**', false);
327 $j = 0;
332 $j += strlen($lines[$i]) + strlen(@$lines[++$i]);
[all …]
/PHP-7.2/ext/standard/
H A Dcrypt_freesec.c232 for (j = 0; j < 64; j++) { in _crypt_extended_init()
233 b = (j & 0x20) | ((j & 1) << 4) | ((j >> 1) & 0xf); in _crypt_extended_init()
243 for (j = 0; j < 64; j++) in _crypt_extended_init()
283 for (j = 0; j < 8; j++) { in _crypt_extended_init()
284 inbit = 8 * k + j; in _crypt_extended_init()
300 for (j = 0; j < 7; j++) { in _crypt_extended_init()
301 inbit = 8 * k + j; in _crypt_extended_init()
313 for (j = 0; j < 7; j++) { in _crypt_extended_init()
314 inbit = 7 * k + j; in _crypt_extended_init()
337 for (j = 0; j < 8; j++) { in _crypt_extended_init()
[all …]
H A Dbase64.c133 int ch, i = 0, j = 0, padding = 0; in php_base64_decode_ex() local
165 ZSTR_VAL(result)[j] = ch << 2; in php_base64_decode_ex()
168 ZSTR_VAL(result)[j++] |= ch >> 4; in php_base64_decode_ex()
169 ZSTR_VAL(result)[j] = (ch & 0x0f) << 4; in php_base64_decode_ex()
172 ZSTR_VAL(result)[j++] |= ch >>2; in php_base64_decode_ex()
173 ZSTR_VAL(result)[j] = (ch & 0x03) << 6; in php_base64_decode_ex()
176 ZSTR_VAL(result)[j++] |= ch; in php_base64_decode_ex()
191 ZSTR_LEN(result) = j; in php_base64_decode_ex()
/PHP-7.2/ext/date/tests/
H A Ddate_diff.phpt23 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-7.2/ext/pcre/pcrelib/
H A Dpcre_ord2utf8.c72 register int i, j; in PRIV() local
77 for (j = i; j > 0; j--) in PRIV()
/PHP-7.2/ext/opcache/tests/
H A Dbug74431.phpt13 $j = 0;
21 $j++;
22 echo $j."\n";
23 if ($j>10) break;
/PHP-7.2/ext/standard/tests/array/
H A Darray_sum.phpt17 $j = 0;
18 while ($j++ < 100000) {
19 $c[] = $j;
20 $d[] = (string) $j;

Completed in 96 milliseconds

12345678910>>...12