Home
last modified time | relevance | path

Searched refs:j (Results 51 – 75 of 259) sorted by relevance

1234567891011

/PHP-7.4/ext/gd/tests/
H A Dsimilarity.inc57 for ($j = 0, $m = imagesy($image1); $j < $m; $j++) {
58 $color1 = imagecolorat($image1, $i, $j);
59 $color2 = imagecolorat($image2, $i, $j);
H A Dimagegammacorrect_variation2.phpt24 for ($j = 0; $j < 4; $j++) {
26 draw_cell($im, $i, $j);
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcdf.c462 for (j = 0; j < h->h_num_sectors_in_master_sat; j++) { in cdf_read_sat()
520 for (j = i = 0; sid >= 0; i++, j++) { in cdf_count_chain()
565 for (j = i = 0; sid >= 0; i++, j++) { in cdf_read_long_sector_chain()
611 for (j = i = 0; sid >= 0; i++, j++) { in cdf_read_short_sector_chain()
674 for (j = i = 0; i < ns; i++, j++) { in cdf_read_dir()
684 for (j = 0; j < nd; j++) { in cdf_read_dir()
720 for (j = i = 0; sid >= 0; i++, j++) { in cdf_read_ssat()
1330 for (j = 0; j < s; j++) { in cdf_dump_sat()
1386 for (j = 0; j < sizeof(name); j++) in cdf_dump_dir()
1387 name[j] = (char)CDF_TOLE2(d->d_name[j]); in cdf_dump_dir()
[all …]
/PHP-7.4/ext/standard/
H A Dbrowscap.c154 size_t i, j=0; in browscap_convert_pattern() local
166 t[j++] = '~'; in browscap_convert_pattern()
167 t[j++] = '^'; in browscap_convert_pattern()
172 t[j] = '.'; in browscap_convert_pattern()
176 t[j] = '*'; in browscap_convert_pattern()
180 t[j] = '.'; in browscap_convert_pattern()
188 t[j] = '('; in browscap_convert_pattern()
192 t[j] = ')'; in browscap_convert_pattern()
208 t[j++] = '$'; in browscap_convert_pattern()
209 t[j++] = '~'; in browscap_convert_pattern()
[all …]
/PHP-7.4/ext/pdo_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 $PHP_LIBDIR $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/Zend/tests/
H A Dbug63635.phpt27 for ($j=0 ; $j<MAX ; $j++) {
H A Dstr_offset_004.phpt9 $j = -4;
20 $str[$j] = 'Q';
35 $str[-$i] = $str[$j*2];
/PHP-7.4/ext/hash/
H A Dhash_sha.c41 unsigned int i, j; in SHAEncode32() local
43 for (i = 0, j = 0; j < len; i++, j += 4) { in SHAEncode32()
59 unsigned int i, j; in SHADecode32() local
61 for (i = 0, j = 0; j < len; i++, j += 4) in SHADecode32()
62 output[i] = ((uint32_t) input[j + 3]) | (((uint32_t) input[j + 2]) << 8) | in SHADecode32()
63 (((uint32_t) input[j + 1]) << 16) | (((uint32_t) input[j]) << 24); in SHADecode32()
732 unsigned int i, j; in SHAEncode64() local
734 for (i = 0, j = 0; j < len; i++, j += 8) { in SHAEncode64()
754 unsigned int i, j; in SHADecode64() local
756 for (i = 0, j = 0; j < len; i++, j += 8) in SHADecode64()
[all …]
H A Dhash_gost.c227 int i, j; in GostTransform() local
230 for (i = 0, j = 0; i < 8; ++i, j += 4) { in GostTransform()
231 data[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in GostTransform()
232 (((uint32_t) input[j + 2]) << 16) | (((uint32_t) input[j + 3]) << 24); in GostTransform()
288 uint32_t i, j, l[8] = {0}; in PHP_GOSTFinal() local
300 for (i = 0, j = 0; j < 32; i++, j += 4) { in PHP_GOSTFinal()
301 digest[j] = (unsigned char) (context->state[i] & 0xff); in PHP_GOSTFinal()
302 digest[j + 1] = (unsigned char) ((context->state[i] >> 8) & 0xff); in PHP_GOSTFinal()
303 digest[j + 2] = (unsigned char) ((context->state[i] >> 16) & 0xff); in PHP_GOSTFinal()
304 digest[j + 3] = (unsigned char) ((context->state[i] >> 24) & 0xff); in PHP_GOSTFinal()
/PHP-7.4/ext/com_dotnet/
H A Dcom_typeinfo.c120 unsigned int i, j; in php_com_load_typelib() local
139 for (j = 0; j < VersionCount; j++) { in php_com_load_typelib()
183 int i, j, interfaces; in php_com_import_typelib() local
203 for (j = 0; ; j++) { in php_com_import_typelib()
537 int j; in php_com_process_typeinfo() local
575 for (j = 0; j < func->cParams; j++) { in php_com_process_typeinfo()
576 ELEMDESC *elem = &func->lprgelemdescParam[j]; in php_com_process_typeinfo()
594 if (j+1 < (int)cnames) { in php_com_process_typeinfo()
596 SysFreeString(names[j+1]); in php_com_process_typeinfo()
604 j == func->cParams - 1 ? ' ' : ',' in php_com_process_typeinfo()
[all …]
/PHP-7.4/Zend/
H A Dzend_strtod.c1095 if (j > 1 && !b->x[j-1])
2144 j = 1 << (j-1);
2925 for(j = 0; e1 > 1; j++, e1 >>= 1)
2954 for(j = 0; e1 > 0; j++, e1 >>= 1)
2973 for(j = 0; e1 > 1; j++, e1 >>= 1)
3016 if (--j < bc.dp1 && j >= bc.dp0)
3996 for(; j; j >>= 1, i++)
4005 for(j = j1 >> 4; j; j >>= 1, i++)
4041 for(i = 0, j = (j1-256) >> 4; j; j >>= 1, i++)
4289 if (j < 0 || (j == 0 && mode != 1
[all …]
/PHP-7.4/ext/hash/sha3/generic32lc/
H A DKeccakSponge.inc57 size_t j;
59 curInput += j;
60 inputByteLen -= j;
152 size_t i, j;
169 i += j;
170 curData += j;
174 for(j=dataByteLen-i; j>=rateInBytes; j-=rateInBytes) {
182 i = dataByteLen - j;
256 size_t i, j;
268 for(j=dataByteLen-i; j>=rateInBytes; j-=rateInBytes) {
[all …]
/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakSponge.inc57 size_t j;
59 curInput += j;
60 inputByteLen -= j;
152 size_t i, j;
169 i += j;
170 curData += j;
174 for(j=dataByteLen-i; j>=rateInBytes; j-=rateInBytes) {
182 i = dataByteLen - j;
256 size_t i, j;
268 for(j=dataByteLen-i; j>=rateInBytes; j-=rateInBytes) {
[all …]
/PHP-7.4/ext/simplexml/tests/
H A D017.phpt40 for ($j=0;$j<count($person->child);$j++) {
41 echo " child: ".$person->child[$j]['name']."\n";
/PHP-7.4/ext/date/tests/
H A DDateTime_format_basic1.phpt17 var_dump( $date->format( "F j, Y, g:i a") );
19 var_dump( $date->format( "j, n, Y") );
21 var_dump( $date->format( 'h-i-s, j-m-y, it is w Day') );
23 var_dump( $date->format( "D M j G:i:s T Y") );
H A Ddate_basic1.phpt17 var_dump( date("F j, Y, g:i a", $timestamp) );
19 var_dump( date("j, n, Y", $timestamp) );
21 var_dump( date('h-i-s, j-m-y, it is w Day', $timestamp) );
23 var_dump( date("D M j G:i:s T Y", $timestamp) );
H A Ddate_format_basic1.phpt17 var_dump( date_format($date, "F j, Y, g:i a") );
19 var_dump( date_format($date, "j, n, Y") );
21 var_dump( date_format($date, 'h-i-s, j-m-y, it is w Day') );
23 var_dump( date_format($date, "D M j G:i:s T Y") );
H A DDateTime_fix_createFromFormat.phpt18 $fromFormat = DateTime::createFromFormat( "D., M# j, Y g:iA", $string );
20 echo "Format method: " . $orig->format("D., M. j, Y g:iA") . "\n";
21 echo "createFromFormat method: " . $fromFormat->format("D., M. j, Y g:iA") . "\n";
H A Dbug32086.phpt10 echo $j = strtotime("+1 day", $g), "\n";
15 echo date("Y-m-d H:i:s T\n", $j);
21 echo $j = strtotime("+1 day", $g), "\n";
26 echo date("Y-m-d H:i:s T\n", $j);
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_encoding.c212 int i, j; in mbfl_name2encoding() local
239 j = 0; in mbfl_name2encoding()
240 while ((*encoding->aliases)[j] != NULL) { in mbfl_name2encoding()
241 if (strcasecmp((*encoding->aliases)[j], name) == 0) { in mbfl_name2encoding()
244 j++; in mbfl_name2encoding()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_bind_limits.phpt27 for ($j = 0; $j < $rows; $j++)
28 $params[($j * $rows) + $i] = $i;
66 for ($j = 0; $j < $num_params; $j++)
67 $param_ref[] = &$params[($i * $rows) + $j];
/PHP-7.4/ext/opcache/Optimizer/
H A Dscdf.c162 int j, end = block->start + block->len; in scdf_solve() local
163 for (j = block->start; j < end; j++) { in scdf_solve()
164 opline = &scdf->op_array->opcodes[j]; in scdf_solve()
165 zend_bitset_excl(scdf->instr_worklist, j); in scdf_solve()
167 scdf->handlers.visit_instr(scdf, opline, &ssa->ops[j]); in scdf_solve()
176 j--; in scdf_solve()
178 scdf->handlers.mark_feasible_successors(scdf, i, block, opline, &ssa->ops[j-1]); in scdf_solve()
H A Dzend_inference.c225 for (j = 0; j < ssa->vars_count; j++) { in zend_ssa_find_sccs()
232 for (j = 0; j < ssa->vars_count; j++) { in zend_ssa_find_sccs()
238 for (j = 0; j < ssa->vars_count; j++) { in zend_ssa_find_sccs()
241 if (root[j] == j) { in zend_ssa_find_sccs()
1659 j = next_scc_var[j]; in zend_infer_ranges_warmup()
1671 j = next_scc_var[j]; in zend_infer_ranges_warmup()
1758 for (j = 0; j < ssa->vars_count; j++) { in zend_infer_ranges()
1781 j = next_scc_var[j]; in zend_infer_ranges()
1801 for (j = scc_var[scc]; j >= 0; j = next_scc_var[j]) { in zend_infer_ranges()
1816 for (j = scc_var[scc]; j >= 0; j = next_scc_var[j]) { in zend_infer_ranges()
[all …]
/PHP-7.4/ext/standard/tests/general_functions/
H A Dgetopt.phpt4 -v -h -d test -m 1234 -t -j
10 var_dump(getopt("d:m:j:vht"));
/PHP-7.4/tests/lang/
H A Dbug24054.phpt13 $j = $i * 1001;
17 $i === $j

Completed in 79 milliseconds

1234567891011