Home
last modified time | relevance | path

Searched refs:i (Results 526 – 550 of 1753) sorted by relevance

1...<<21222324252627282930>>...71

/PHP-5.5/sapi/fpm/fpm/events/
H A Dkqueue.c122 int ret, i; in fpm_event_kqueue_wait() local
143 for (i = 0; i < ret; i++) { in fpm_event_kqueue_wait()
144 if (kevents[i].udata) { in fpm_event_kqueue_wait()
145 struct fpm_event_s *ev = (struct fpm_event_s *)kevents[i].udata; in fpm_event_kqueue_wait()
/PHP-5.5/tests/lang/operators/
H A Doperator_gt_basic.phpt35 for ($i = 0; $i < count($toCompare); $i +=3) {
36 $typeToTest = $toCompare[$i];
37 $valid_compares = $toCompare[$i + 1];
38 $invalid_compares = $toCompare[$i + 2];
/PHP-5.5/ext/standard/tests/strings/
H A Dpack.phpt66 print_r(unpack("i", pack("i", 65534)));
67 print_r(unpack("i", pack("i", 0)));
68 print_r(unpack("i", pack("i", -1000)));
69 print_r(unpack("i", pack("i", -64434)));
70 print_r(unpack("i", pack("i", -65535)));
71 print_r(unpack("i", pack("i", -2147483647)));
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregposix.c121 int i; in onig2posix_error_code() local
125 for (i = 0; i < (int )(sizeof(o2p) / sizeof(o2p[0])); i++) { in onig2posix_error_code()
126 if (code == o2p[i].onig_err) in onig2posix_error_code()
127 return o2p[i].posix_err; in onig2posix_error_code()
169 int r, i, len; in regexec() local
205 for (i = 0; i < (int )nmatch; i++) in regexec()
206 pmatch[i].rm_so = pmatch[i].rm_eo = ONIG_REGION_NOTPOS; in regexec()
/PHP-5.5/Zend/tests/
H A Dbug44913.phpt7 for($i = 0; $i < 1; $i++) {
/PHP-5.5/ext/zlib/
H A Dconfig0.m424 for i in /usr/local /usr $PHP_ZLIB_DIR; do
25 if test -f $i/include/zlib/zlib.h; then
26 ZLIB_DIR=$i
27 ZLIB_INCDIR=$i/include/zlib
28 elif test -f $i/include/zlib.h; then
29 ZLIB_DIR=$i
30 ZLIB_INCDIR=$i/include
/PHP-5.5/ext/date/tests/
H A Dmktime_variation5.phpt116 int(%i)
122 int(%i)
125 int(%i)
128 int(%i)
131 int(%i)
154 int(%i)
157 int(%i)
160 int(%i)
163 int(%i)
166 int(%i)
[all …]
H A D012.phpt9 var_dump($dto->format("Y/m/d H:i:s"));
11 var_dump($dto->format("Y/m/d H:i:s"));
13 var_dump($dto->format("Y/m/d H:i:s"));
15 var_dump($dto->format("Y/m/d H:i:s"));
17 var_dump($dto->format("Y/m/d H:i:s"));
H A D013.phpt9 var_dump($dto->format("Y.m.d H:i:s"));
11 var_dump($dto->format("Y.m.d H:i:s"));
13 var_dump($dto->format("Y.m.d H:i:s"));
15 var_dump($dto->format("Y.m.d H:i:s"));
17 var_dump($dto->format("Y.m.d H:i:s"));
/PHP-5.5/ext/gd/libgd/
H A Dgd_arc_f_buggy.c37 int i;
106 for (i = 0; i < 4; i++)
108 if ((s < (i + 1) * 90) && (e > (i + 1) * 90))
114 pt[1].x = cx + axis_pt[(i + 1) & 3].x;
115 pt[1].y = cy + axis_pt[(i + 1) & 3].y;
116 if (e <= (i + 2) * 90)
137 gdImageFilledArc (im, cx, cy, width, height, (i + 1) * 90, (i + 2) * 90, color, gdChord);
140 if (e <= (i + 3) * 90)
161 gdImageFilledArc (im, cx, cy, width, height, (i + 2) * 90, (i + 3) * 90, color, gdChord);
164 if (e <= (i + 4) * 90)
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dbug30362.phpt8 for ($i = 0; ($i < 10) && !feof($resource); ++$i ) {
H A Dfread_socket_variation1.phpt6 for ($i=0; $i<100; $i++) {
/PHP-5.5/ext/hash/
H A Dbench.php81 for ($i = 0; $i < 1000; $i++) { variable
/PHP-5.5/ext/iconv/tests/
H A Diconv003.phpt7 for ($i = 0; $i < 3; ++$i) {
/PHP-5.5/ext/sockets/tests/
H A Dsocket_read_params.phpt24 Warning: socket_read() expects at least 2 parameters, 0 given in %s on line %i
26 Warning: socket_read() expects at least 2 parameters, 1 given in %s on line %i
28 Warning: socket_read(): unable to read from socket [%i]: %a in %s on line %i
/PHP-5.5/ext/zlib/tests/
H A Dgzinflate-bug42663.phpt9 for($i=0; $i<30000; ++$i) $string .= $i . ' ';
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Deuc_jp.c62 int c, i, len; in mbc_to_code() local
69 for (i = 1; i < len; i++) { in mbc_to_code()
135 int i; in mbc_case_fold() local
138 for (i = 0; i < len; i++) { in mbc_case_fold()
/PHP-5.5/ext/gd/
H A Dgd_ctx.c85 int q = -1, i; in _php_image_output_ctx() local
181 for(i=0; i < gdImageColorsTotal(im); i++) { in _php_image_output_ctx()
182 if(!gdImageRed(im, i) && !gdImageGreen(im, i) && !gdImageBlue(im, i)) break; in _php_image_output_ctx()
184 q = i; in _php_image_output_ctx()
/PHP-5.5/ext/phar/tests/
H A Dbug69324.phar1 …���o߹���#���a:2:{i:0;s:2:"hi";i:1;s:5:"there";}���d�����D����Jݘ���/���a:2:{s:2:"hi";s:5:"th…
H A Dphar_buildfromdirectory5.phpt12 foreach(range(1, 4) as $i) {
13 file_put_contents(dirname(__FILE__)."/testdir/file$i.txt", "some content for file $i");
33 foreach(range(1, 4) as $i) {
34 unlink(dirname(__FILE__) . "/testdir/file$i.txt");
H A Dphar_buildfromdirectory4.phpt13 foreach(range(1, 4) as $i) {
14 file_put_contents(dirname(__FILE__)."/testdir/file$i.txt", "some content for file $i");
34 foreach(range(1, 4) as $i) {
35 unlink(dirname(__FILE__) . "/testdir/file$i.txt");
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_result_references_mysqlnd.phpt45 for ($i = 0; $i < 2; $i++) {
46 $rows[$i] = mysqli_fetch_assoc($res);
47 $references[$idx]['row_ref'] = &$rows[$i];
48 $references[$idx]['row_copy'] = $rows[$i];
49 $references[$idx]['id_ref'] = &$rows[$i]['id'];
50 $references[$idx]['id_copy'] = $rows[$i]['id'];
52 $references[$idx]['id_copy_mod']= $rows[$i]['id'] + 0;
/PHP-5.5/ext/mbstring/libmbfl/tests/
H A Dconv_encoding.c15 unsigned int i; in hexdump() local
17 for (i = 0; i < ptr->len; i++) { in hexdump()
18 printf("%%%02x", ptr->val[i]); in hexdump()
H A Dstrcut.c16 unsigned int i; in hexdump() local
18 for (i = 0; i < ptr->len; i++) { in hexdump()
19 printf("%%%02x", ptr->val[i]); in hexdump()
/PHP-5.5/tests/lang/
H A D024.phpt149 $j = $i*2+$j*($i++);
172 $j += ++$i; /* ++$i --> $i==2, $j += 2 --> $j==2 */
218 $i=0;
238 $i=0;
244 ${"test$i$j"}[$k] = $i+$j+$k;
254 $i=0;
276 $arr[$i]=$i;
357 echo "\$i=$i\n";
555 $i=0
571 $i=1
[all …]

Completed in 60 milliseconds

1...<<21222324252627282930>>...71