Home
last modified time | relevance | path

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

1234567891011

/PHP-5.6/ext/mbstring/libmbfl/tests/conv_encoding.tests/
H A Dgen_exp.c307 const int j = jisx0208_tl_map[c - 0xa0]; in to_cp50220_visitor() local
309 sprintf(buf_cp50220, "%%1b%%24%%42%%%02x%%%02x%%1b%%28%%42", j >> 8, j & 0xff); in to_cp50220_visitor()
311 …const int j = ((((c & 0xff00) - (c >= 0xe000 ? 0xb000: 0x7000)) << 1) | ((c & 0xff) - (c & 0x80 ? … in to_cp50220_visitor() local
313 sprintf(buf_cp50220, "%%1b%%24%%42%%%02x%%%02x%%1b%%28%%42", j >> 8, j & 0xff); in to_cp50220_visitor()
354 …const int j = ((((c & 0xff00) - (c >= 0xe000 ? 0xb000: 0x7000)) << 1) | ((c & 0xff) - (c & 0x80 ? … in to_cp50222_visitor() local
356 sprintf(buf_cp50220, "%%1b%%24%%42%%%02x%%%02x%%1b%%28%%42", j >> 8, j & 0xff); in to_cp50222_visitor()
/PHP-5.6/ext/zip/lib/
H A Dzip_close.c72 zip_uint64_t i, j, survivors; in zip_close() local
128 for (i=j=0; i<za->nentry; i++) { in zip_close()
132 if (j >= survivors) { in zip_close()
138 filelist[j].idx = i; in zip_close()
139 filelist[j].name = zip_get_name(za, i, 0); in zip_close()
140 j++; in zip_close()
142 if (j < survivors) { in zip_close()
163 for (j=0; j<survivors; j++) { in zip_close()
168 i = filelist[j].idx; in zip_close()
/PHP-5.6/ext/sybase_ct/
H A Dphp_sybase_ct.c270 int i, j; in _free_sybase_result() local
274 for (j=0; j<result->num_fields; j++) { in _free_sybase_result()
1196 int i, j; in php_sybase_fetch_result_row() local
1215 for (j = 0; j < result->num_fields; j++) { in php_sybase_fetch_result_row()
1234 RETURN_DOUBLE_VAL(result->data[i][j], result->tmp_buffer[j], result->lengths[j]); in php_sybase_fetch_result_row()
1245 RETURN_DOUBLE_VAL(result->data[i][j], result->tmp_buffer[j], result->lengths[j]); in php_sybase_fetch_result_row()
1262 ZVAL_STRINGL(&result->data[i][j], result->tmp_buffer[j], result->lengths[j]- 1, 1); in php_sybase_fetch_result_row()
1391 j=0; in php_sybase_fetch_result_set()
1404 j++; in php_sybase_fetch_result_set()
1816 j= 1; in php_sybase_fetch_hash()
[all …]
/PHP-5.6/ext/pcre/
H A Dconfig0.m424 for j in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/$PHP_LIBDIR; do
25 test -f $j/libpcre.a || test -f $j/libpcre.$SHLIB_SUFFIX_NAME && PCRE_LIBDIR=$j
/PHP-5.6/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-5.6/tests/lang/
H A Dengine_assignExecutionOrder_002.phpt39 $j = array(0,0,0);
42 list(list($j[$h++],$j[$h++]),$j[$h++]) = $i[$h];
43 var_dump($j);
/PHP-5.6/ext/ereg/
H A Dereg.c736 register int i, j; in PHP_FUNCTION() local
744 for (i = j = 0; i < string_len; i++) { in PHP_FUNCTION()
746 if ( j >= INT_MAX - 1 || (isalpha(c) && j >= INT_MAX - 4)) { in PHP_FUNCTION()
752 tmp[j++] = '['; in PHP_FUNCTION()
753 tmp[j++] = toupper(c); in PHP_FUNCTION()
754 tmp[j++] = tolower(c); in PHP_FUNCTION()
755 tmp[j++] = ']'; in PHP_FUNCTION()
757 tmp[j++] = c; in PHP_FUNCTION()
760 tmp[j] = 0; in PHP_FUNCTION()
762 RETVAL_STRINGL(tmp, j, 1); in PHP_FUNCTION()
/PHP-5.6/ext/fileinfo/libmagic/
H A Dapprentice.c503 int j; in apprentice_unmap() local
504 for (j = 0; j < MAGIC_SETS; j++) { in apprentice_unmap()
1219 for (j = 0; j < MAGIC_SETS; j++) { in apprentice_load()
1228 qsort(mset[j].me, mset[j].count, sizeof(*mset[j].me), in apprentice_load()
1235 set_last_default(ms, mset[j].me, mset[j].count); in apprentice_load()
1238 if (coalesce_entries(ms, mset[j].me, mset[j].count, in apprentice_load()
1239 &map->magic[j], &map->nmagic[j]) == -1) { in apprentice_load()
1246 for (j = 0; j < MAGIC_SETS; j++) in apprentice_load()
1247 magic_entry_free(mset[j].me, mset[j].count); in apprentice_load()
1250 for (j = 0; j < MAGIC_SETS; j++) { in apprentice_load()
[all …]
/PHP-5.6/ext/com_dotnet/
H A Dcom_com.c471 int i, byref_count = 0, j; in php_com_do_invoke_byref() local
507 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
514 if (V_VT(&byref_vals[j]) & VT_BYREF) { in php_com_do_invoke_byref()
515 memcpy(&vargs[i], &byref_vals[j], sizeof(vargs[i])); in php_com_do_invoke_byref()
519 V_VT(&vargs[i]) = V_VT(&byref_vals[j]) | VT_BYREF; in php_com_do_invoke_byref()
521 vargs[i].byref = &V_UINT(&byref_vals[j]); in php_com_do_invoke_byref()
523 j++; in php_com_do_invoke_byref()
552 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
561 if (vargs[i].byref == &V_UINT(&byref_vals[j])) { in php_com_do_invoke_byref()
572 VariantClear(&byref_vals[j]); in php_com_do_invoke_byref()
[all …]
/PHP-5.6/ext/json/
H A Djson.c375 int j, status; in json_utf8_to_utf16() local
379 for (j=0 ; pos < len ; j++) { in json_utf8_to_utf16()
387 utf16[j++] = (unsigned short)((us >> 10) | 0xd800); in json_utf8_to_utf16()
388 utf16[j] = (unsigned short)((us & 0x3ff) | 0xdc00); in json_utf8_to_utf16()
390 utf16[j] = (unsigned short)us; in json_utf8_to_utf16()
395 for (j=0 ; pos < len ; j++) { in json_utf8_to_utf16()
401 j++; in json_utf8_to_utf16()
405 return j; in json_utf8_to_utf16()
/PHP-5.6/ext/oci8/tests/
H A Dbug43497.phpt108 for ($j = 0; $j < 128; $j++) {
112 for ($j = 0; $j < 4; $j++) {
/PHP-5.6/ext/gd/libgd/
H A Dgd_interpolation.c1173 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour()
1184 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour()
1281 long j; in gdImageScaleBilinearPalette() local
1288 for (j=0; j < _width; j++) { in gdImageScaleBilinearPalette()
1376 long j; in gdImageScaleBilinearTC() local
1378 for (j=0; j < dst_w; j++) { in gdImageScaleBilinearTC()
1491 for (j=0; j < new_width; j++) { in gdImageScaleBicubicFixed()
1742 for (j = 0; j < new_width; j++) { in gdImageRotateNearestNeighbour()
1804 for (j = 0; j < new_width; j++) { in gdImageRotateGeneric()
1858 for (j=0; j < new_width; j++) { in gdImageRotateBilinear()
[all …]
/PHP-5.6/win32/build/
H A Dlibs_version.txt16 openssl-1.0.2j
/PHP-5.6/ext/standard/
H A Dmail.c83 int j, str_len; in PHP_FUNCTION() local
89 for (j = 0; j < str_len; j++) { in PHP_FUNCTION()
90 h = (h + (h << 5)) ^ (unsigned long) (unsigned char) tolower(str[j]); in PHP_FUNCTION()
/PHP-5.6/ext/standard/tests/math/
H A Datan2_basic.phpt34 for ($j = 0; $j < count($valuesx); $j++) {
35 $res = atan2($valuesy[$i], $valuesx[$j]);
36 echo "Y:$valuesy[$i] X:$valuesx[$j] ";
H A Dround_basic.phpt42 for ($j = 0; $j < count($precision); $j++) {
43 $res = round($values[$i], $precision[$j]);
44 echo "...with precision $precision[$j]-> ";
/PHP-5.6/ext/date/tests/
H A DDateTime_setISODate_basic1.phpt25 echo "Week 30 day 3 of 2009 is \"" . $datetime->format("D M j") . "\"\n";
29 echo "..same day last year was \"" . $datetime->format("D M j") . "\"\n";
H A Ddate_isodate_set_basic1.phpt25 echo "Week 30 day 3 of 2009 is \"" . date_format($datetime, "D M j") . "\"\n";
29 echo "..same day last year was \"" . date_format($datetime, "D M j") . "\"\n";
H A Dbug65502.phpt9 echo get_class(DateTimeImmutable::createFromFormat('j-M-Y', '12-Sep-2013'));
H A D009_win32.phpt18 var_dump(strftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t));
28 var_dump(gmstrftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t));
/PHP-5.6/ext/intl/tests/
H A Dmsgfmt_format_simple_types_numeric_strings.phpt26 duration {j,duration}
40 'j' => $ex,
/PHP-5.6/ext/pdo_oci/tests/
H A Dpdo_oci_fread_1.phpt24 lob1 clob := 'abc' || lpad('j',4020,'j') || 'xyz';
/PHP-5.6/ext/standard/tests/file/windows_links/
H A Dbug48746.phpt30 exec("mklink /j mounted_volume " . $ret, $output, $ret_val);
32 exec("mklink /j mklink_junction directory", $output, $ret_val);
/PHP-5.6/ext/interbase/tests/
H A D007.phpt34 for ($j = 1; $j <= 10; ++$j) {
36 $v_multi[$i][$j][$k] = $i * $j * $k;
/PHP-5.6/ext/hash/tests/
H A Dfnv1a64.phpt67 array( ']#=j)w&hBv#w', '7a2da4d0b1c01e1e' ),
101 array( '7j$>aFyS#\\TsxGc_uhf', 'a8cfc6804bc24e1d' ),
126 array( '8Ey&!PVJ-H%i)T=bwXII-j( ', '20541ecba873cbbb' ),
128 array( 'zlU)W])/=j[SP<$[wYh%f@@=', '8a852332f2c99373' ),
159 array( 'v(tFAPf(W0 j^:uMDM<^:Vl90K/PrH/', 'ad49c5c4b29581d8' ),
161 array( '3|!EpV?lcIi]3!LK]j xC,"6HW85 d2', '45f93db9ecbd61e2' ),
169 array( 'yNG)j&w\'U>|1]-|#r3-E0S&lj$Db#m>}<', 'b3fb4982abc0e4c0' ),
182 array( 'q_A@_0{>82gF]e:V]j*!\\zza:@&hkuZ^U{ ', 'ff47e63839babc22' ),
198 array( 'qYB#6CX{~0dVF;6=)+ j%1"<\\u"D[ooNI3Q`W+', '58f171ded41e0193' ),
215 array( 'kAHAq7S"wxf3*1eJvGh.-h+j$^(v9@U&b~GT7zV0s>', '01e47424ff38f337' ),
[all …]

Completed in 85 milliseconds

1234567891011