Home
last modified time | relevance | path

Searched refs:j (Results 76 – 100 of 259) sorted by relevance

1234567891011

/PHP-7.4/ext/standard/
H A Dquot_print.c205 size_t i = 0, j = 0, k; in PHP_FUNCTION() local
225 ZSTR_VAL(str_out)[j++] = (php_hex2int((int) str_in[i + 1]) << 4) in PHP_FUNCTION()
247 ZSTR_VAL(str_out)[j++] = str_in[i++]; in PHP_FUNCTION()
252 ZSTR_VAL(str_out)[j++] = str_in[i++]; in PHP_FUNCTION()
255 ZSTR_VAL(str_out)[j] = '\0'; in PHP_FUNCTION()
256 ZSTR_LEN(str_out) = j; in PHP_FUNCTION()
H A Dsha1.c371 unsigned int i, j; local
373 for (i = 0, j = 0; j < len; i++, j += 4) {
374 output[j] = (unsigned char) ((input[i] >> 24) & 0xff);
375 output[j + 1] = (unsigned char) ((input[i] >> 16) & 0xff);
376 output[j + 2] = (unsigned char) ((input[i] >> 8) & 0xff);
377 output[j + 3] = (unsigned char) (input[i] & 0xff);
391 unsigned int i, j; local
393 for (i = 0, j = 0; j < len; i++, j += 4)
394 output[i] = ((uint32_t) input[j + 3]) | (((uint32_t) input[j + 2]) << 8) |
395 (((uint32_t) input[j + 1]) << 16) | (((uint32_t) input[j]) << 24);
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dqueue.c713 int flag = 1, i, j; in QuickSort() local
718 j = high + 1; in QuickSort()
727 j--; in QuickSort()
728 while(Comp(list[j], key) > 0) in QuickSort()
729 j--; in QuickSort()
731 if(i < j) { in QuickSort()
733 list[i] = list[j]; in QuickSort()
734 list[j] = temp; in QuickSort()
740 list[low] = list[j]; in QuickSort()
741 list[j] = temp; in QuickSort()
[all …]
/PHP-7.4/ext/hash/
H A Dhash_md.c70 unsigned int i, j; in Encode() local
72 for (i = 0, j = 0; j < len; i++, j += 4) { in Encode()
73 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
74 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
87 unsigned int i, j; in Decode() local
89 for (i = 0, j = 0; j < len; i++, j += 4) in Decode()
90 output[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in Decode()
91 (((uint32_t) input[j + 2]) << 16) | (((uint32_t) input[j + 3]) << 24); in Decode()
634 unsigned char i,j,t = 0; in MD2_Transform() local
642 for(j = 0; j < 48; j++) { in MD2_Transform()
[all …]
H A Dhash_haval.c101 unsigned int i, j; in Encode() local
103 for (i = 0, j = 0; j < len; i++, j += 4) { in Encode()
104 output[j] = (unsigned char) (input[i] & 0xff); in Encode()
105 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff); in Encode()
106 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff); in Encode()
107 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff); in Encode()
118 unsigned int i, j; in Decode() local
120 for (i = 0, j = 0; j < len; i++, j += 4) { in Decode()
121 output[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in Decode()
122 (((uint32_t) input[j + 2]) << 16) | (((uint32_t) input[j + 3]) << 24); in Decode()
/PHP-7.4/ext/intl/tests/
H A Dbug74484_MessageFormatter.phpt10 $text = "{a} {b} {c} {d} {e} {f} {g} {h} {i} {j} {k} {l}";
22 'j' => 10,
H A Dbug62759.phpt12 var_dump(grapheme_substr('déjà', 1, -4));
14 var_dump(grapheme_substr('déjà', -1, 0));
H A Dmsgfmt_format_simple_types_numeric_strings.phpt24 duration {j,duration}
38 'j' => $ex,
/PHP-7.4/ext/gd/libgd/
H A Dgd_jpeg.c179 int i, j, jidx; in _gdImageJpegCtx() local
245 for (jidx = 0, j = 0; j < im->sx; j++) { in _gdImageJpegCtx()
246 int val = im->tpixels[i][j]; in _gdImageJpegCtx()
260 for (jidx = 0, j = 0; j < im->sx; j++) { in _gdImageJpegCtx()
261 int idx = im->pixels[i][j]; in _gdImageJpegCtx()
346 unsigned int i, j; in gdImageCreateFromJpegCtxEx() local
483 for (j = 0; j < cinfo.output_width; j++, currow += 4, tpix++) { in gdImageCreateFromJpegCtxEx()
496 for (j = 0; j < cinfo.output_width; j++, currow += 3, tpix++) { in gdImageCreateFromJpegCtxEx()
H A Dgdxpm.c22 int i, j, k, number; in gdImageCreateFromXpm() local
127 for (j = 0; j < image.width; j++) { in gdImageCreateFromXpm()
129 gdImageSetPixel(im, j, i, colors[k]); in gdImageCreateFromXpm()
H A Dgd_interpolation.c1106 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour()
1117 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour()
1166 long j; in gdImageScaleBilinearPalette() local
1173 for (j=0; j < _width; j++) { in gdImageScaleBilinearPalette()
1260 long j; in gdImageScaleBilinearTC() local
1262 for (j=0; j < dst_w; j++) { in gdImageScaleBilinearTC()
1374 for (j=0; j < new_width; j++) { in gdImageScaleBicubicFixed()
1646 for (j = 0; j < new_width; j++) { in gdImageRotateNearestNeighbour()
1711 for (j = 0; j < new_width; j++) { in gdImageRotateGeneric()
1769 for (j=0; j < new_width; j++) { in gdImageRotateBilinear()
[all …]
/PHP-7.4/ext/pgsql/
H A Dconfig.m437 for j in include include/pgsql include/postgres include/postgresql ""; do
38 if test -r "$i/$j/libpq-fe.h"; then
40 PGSQL_INCLUDE=$i/$j
41 if test -r "$i/$j/pg_config.h"; then
47 for j in lib $PHP_LIBDIR/pgsql $PHP_LIBDIR/postgres $PHP_LIBDIR/postgresql ""; do
48 if test -f "$i/$j/libpq.so" || test -f "$i/$j/libpq.a"; then
49 PGSQL_LIBDIR=$i/$j
/PHP-7.4/tests/lang/
H A D020.phpt8 for ($j=0; $j<10; $j++) {
H A Dengine_assignExecutionOrder_002.phpt39 $j = array(0,0,0);
42 list(list($j[$h++],$j[$h++]),$j[$h++]) = $i[3];
43 var_dump($j);
/PHP-7.4/ext/intl/collator/
H A Dcollator_sort.c388 uint32_t j = 0; in PHP_FUNCTION() local
508 for( j = 0; j < sortKeyCount; j++ ) in PHP_FUNCTION()
509 sortKeyIndxBuf[j].key = sortKeyBuf + (ptrdiff_t)sortKeyIndxBuf[j].key; in PHP_FUNCTION()
519 for( j = 0; j < sortKeyCount; j++ ) in PHP_FUNCTION()
521 Z_TRY_ADDREF_P( sortKeyIndxBuf[j].zstr ); in PHP_FUNCTION()
522 zend_hash_next_index_insert( Z_ARRVAL_P(array), sortKeyIndxBuf[j].zstr); in PHP_FUNCTION()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_printint.c687 int j; in pcre2_printint() local
688 for (j = i+1; j < 256; j++) in pcre2_printint()
689 if ((map[j/8] & (1u << (j&7))) == 0) break; in pcre2_printint()
693 if (--j > i) in pcre2_printint()
695 if (j != i + 1) fprintf(f, "-"); in pcre2_printint()
696 if (j == '-' || j == ']') fprintf(f, "\\"); in pcre2_printint()
697 if (PRINTABLE(j)) fprintf(f, "%c", j); in pcre2_printint()
698 else fprintf(f, "\\x%02x", j); in pcre2_printint()
700 i = j; in pcre2_printint()
H A Dpcre2_serialize.c173 int32_t i, j; in pcre2_serialize_decode() local
220 for (j = 0; j < i; j++) in pcre2_serialize_decode()
222 memctl->free(codes[j], memctl->memory_data); in pcre2_serialize_decode()
223 codes[j] = NULL; in pcre2_serialize_decode()
/PHP-7.4/ext/standard/tests/math/
H A Dfmod_basic.phpt35 for ($j = 0; $j < count($values2); $j++) {
36 $res = fmod($values1[$i], $values2[$j]);
H A Dround_basic.phpt40 for ($j = 0; $j < count($precision); $j++) {
41 $res = round($values[$i], $precision[$j]);
42 echo "...with precision $precision[$j]-> ";
/PHP-7.4/ext/date/lib/
H A Ddow.c43 static timelib_sll century_value(timelib_sll j) in century_value() argument
45 return 6 - positive_mod(j, 4) * 2; in century_value()
131 int j; in timelib_isoweek_from_date() local
133 j = doy + (7 - weekday) + (jan1weekday - 1); in timelib_isoweek_from_date()
134 *iw = j / 7; in timelib_isoweek_from_date()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_frame.c206 int j = 0, m; in phpdbg_dump_prototype() local
218 if (j) { in phpdbg_dump_prototype()
222 if (m && j < m) { in phpdbg_dump_prototype()
227 arg_name = (char *)((zend_internal_arg_info *)&arginfo[j])->name; in phpdbg_dump_prototype()
229 arg_name = ZSTR_VAL(arginfo[j].name); in phpdbg_dump_prototype()
234 is_variadic = arginfo ? arginfo[j].is_variadic : 0; in phpdbg_dump_prototype()
243 ++j; in phpdbg_dump_prototype()
/PHP-7.4/tests/func/
H A D003.phpt17 function c($i,$j)
19 echo "Counting from $i to $j\n";
20 for ($k=$i; $k<=$j; $k++) {
90 function andi($i, $j)
92 for ($k=$i ; $k<=$j ; $k++) {
/PHP-7.4/ext/com_dotnet/
H A Dcom_com.c486 int i, byref_count = 0, j; in php_com_do_invoke_byref() local
520 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
527 if (V_VT(&byref_vals[j]) & VT_BYREF) { in php_com_do_invoke_byref()
532 V_VT(&vargs[i]) = V_VT(&byref_vals[j]) | VT_BYREF; in php_com_do_invoke_byref()
534 vargs[i].byref = &V_UINT(&byref_vals[j]); in php_com_do_invoke_byref()
536 j++; in php_com_do_invoke_byref()
566 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
579 if (vargs[i].byref == &V_UINT(&byref_vals[j])) { in php_com_do_invoke_byref()
588 VariantClear(&byref_vals[j]); in php_com_do_invoke_byref()
589 j++; in php_com_do_invoke_byref()
[all …]
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_ssa.h205 int j; in zend_ssa_next_use_phi() local
206 for (j = 0; j < ssa->cfg.blocks[p->block].predecessors_count; j++) { in zend_ssa_next_use_phi()
207 if (p->sources[j] == var) { in zend_ssa_next_use_phi()
208 return p->use_chains[j]; in zend_ssa_next_use_phi()
/PHP-7.4/Zend/tests/assert/
H A Dexpect_015.phpt35 for ($i = 0, $j = 100; $i < $j; $i++, --$j) {
36 $s[$i] = $a[$j];
175 for ($i = 0, $j = 100; $i < $j; $i++, --$j) {
176 $s[$i] = $a[$j];

Completed in 86 milliseconds

1234567891011