Home
last modified time | relevance | path

Searched refs:i (Results 226 – 250 of 2007) sorted by relevance

12345678910>>...81

/PHP-7.1/ext/pcre/
H A Dphp_pcre.c826 for (i=0; i<num_subpats; i++) { in php_pcre_match_impl()
873 for (i = 0; i < count; i++) { in php_pcre_match_impl()
878 for (i = 0; i < count; i++) { in php_pcre_match_impl()
907 for (i = 0; i < count; i++) { in php_pcre_match_impl()
945 for (i = 0; i < count; i++) { in php_pcre_match_impl()
951 for (i = 0; i < count; i++) { in php_pcre_match_impl()
962 for (i = 0; i < count; i++) { in php_pcre_match_impl()
968 for (i = 0; i < count; i++) { in php_pcre_match_impl()
1116 for (i = 0; i < count; i++) { in preg_do_repl_func()
1123 for (i = 0; i < count; i++) { in preg_do_repl_func()
[all …]
/PHP-7.1/Zend/tests/
H A Dbug38220.phpt9 echo "func1(): {$this->obj->i}\n";
13 echo "close(): {$this->obj->i}\n";
18 public $i;
20 function __construct($i) {
21 $this->i = $i;
66 [i] => 1
74 [i] => 1
81 [i] => 2
89 [i] => 2
H A Dclosure_010.phpt5 $i = 3;
6 $lambda = function ($lambda) use (&$i) {
7 if ($i==0) return;
8 echo $i--."\n";
12 echo "$i\n";
/PHP-7.1/tests/func/
H A D010.phpt32 for($i=0; $i < $limit; ++$i) {
33 $str .= '$v'.dechex($i).($i===($limit-1) ? '' : ',');
50 for($i=0; $i< $limit; ++$i) {
51 $str .= "'".dechex($i)."'".($i===($limit-1) ? '' : ',');
H A D003.phpt11 function b($i)
13 echo "$i\n";
17 function c($i,$j)
19 echo "Counting from $i to $j\n";
20 for ($k=$i; $k<=$j; $k++) {
57 for ($i=0; $i<=10; $i++) {
58 $n=factorial($i);
69 for ($i=0; $i<=10; $i++) {
70 if ($i == 5) break;
71 $n=factorial($i);
[all …]
/PHP-7.1/ext/soap/tests/
H A Dbug70211.phpt11 for ($i=0; $i<8; $i++) {
19 $ob = unserialize("a:3:{i:0;".serialize($sf).'i:1;r:12;i:2;r:10;}');
/PHP-7.1/ext/standard/tests/serialize/
H A Dbug74103.phpt5 var_dump(unserialize('a:7:{i:0;i:04;s:1:"a";i:2;i:9617006;i:4;s:1:"a";i:4;s:1:"a";R:5;s:1:"7";R:3;s…
H A Dbug69425.phpt17 $data = unserialize('a:2:{i:0;O:4:"test":1:{s:4:"ryat";R:1;}i:1;i:2;}');
21 $data = unserialize('a:2:{i:0;O:12:"DateInterval":1:{s:1:"y";R:1;}i:1;i:2;}');
38 ["i"]=>
/PHP-7.1/ext/wddx/tests/
H A Dbug70661.phpt37 for ($i = 0; $i < 5; $i++) {
38 $v[$i] = $fakezval.$i;
47 for ($i = 0; $i < 8; $i++) {
/PHP-7.1/ext/gd/libgd/
H A Dgd_gif_out.c265 int i; in GIFEncode() local
347 for( i=0; i<ColorMapSize; ++i ) { in GIFEncode()
455 #define HashTabOf(i) ctx->htab[i] argument
456 #define CodeTabOf(i) ctx->codetab[i] argument
468 #define tab_prefixof(i) CodeTabOf(i) argument
469 #define tab_suffixof(i) ((char_type*)(htab))[i] argument
553 if ( i == 0 )
557 i += hsize_reg;
698 register long i; local
701 i = chsize - 16;
[all …]
/PHP-7.1/ext/com_dotnet/
H A Dcom_saproxy.c67 int i; in clone_indices() local
69 for (i = 0; i < ndims; i++) { in clone_indices()
70 ZVAL_DUP(&dest->indices[i], &src->indices[i]); in clone_indices()
107 for (i = 1; i < (UINT) proxy->dimensions; i++) { in saproxy_read_dimension()
108 args[i-1] = proxy->indices[i]; in saproxy_read_dimension()
168 for (i = 0; i < dims; i++) { in saproxy_read_dimension()
170 indices[i] = (LONG)Z_LVAL(proxy->indices[i]); in saproxy_read_dimension()
219 for (i = 1; i < (UINT) proxy->dimensions; i++) { in saproxy_write_dimension()
242 for (i = 0; i < dims; i++) { in saproxy_write_dimension()
540 int i; in php_com_saproxy_iter_get() local
[all …]
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_cfg.c234 int i; in zend_cfg_remark_reachable_blocks() local
237 for (i = 0; i < cfg->blocks_count; i++) { in zend_cfg_remark_reachable_blocks()
239 start = i; in zend_cfg_remark_reachable_blocks()
240 i++; in zend_cfg_remark_reachable_blocks()
246 for (i = 0; i < cfg->blocks_count; i++) { in zend_cfg_remark_reachable_blocks()
280 uint32_t i; in zend_build_cfg() local
300 for (i = 0; i < op_array->last; i++) { in zend_build_cfg()
476 for (i = 0; i < op_array->last; i++) { in zend_build_cfg()
817 for (i = 0; i < cfg->blocks_count; i++) { in zend_cfg_identify_loops()
818 sorted_blocks[i].id = i; in zend_cfg_identify_loops()
[all …]
/PHP-7.1/ext/bcmath/libbcmath/src/
H A Ddebug.c65 int i; local
67 for (i=0; i<len; i++) printf ("%c",BCD_CHAR(num[i]));
/PHP-7.1/ext/date/tests/
H A Ddate_interval_prop_dim.phpt7 $i = 0;
9 while ($i < 1026) {
10 $z->prop[$i] = $i;
11 $i++;
H A Dbug53437_var3.phpt7i";s:1:"8";s:1:"s";s:1:"0";s:7:"weekday";i:10;s:16:"weekday_behavior";i:10;s:17:"first_last_day_of…
24 ["i"]=>
H A Dbug53437_var5.phpt7i";s:1:"8";s:1:"s";s:1:"0";s:7:"weekday";i:10;s:16:"weekday_behavior";i:10;s:17:"first_last_day_of…
24 ["i"]=>
/PHP-7.1/ext/standard/tests/math/
H A Dmt_rand_variation2.phpt94 int(%i)
97 int(%i)
100 int(%i)
103 int(%i)
106 int(%i)
109 int(%i)
112 int(%i)
120 int(%i)
123 int(%i)
126 int(%i)
[all …]
H A Drand_variation1.phpt94 int(%i)
97 int(%i)
100 int(%i)
103 int(%i)
106 int(%i)
109 int(%i)
112 int(%i)
120 int(%i)
123 int(%i)
126 int(%i)
[all …]
H A Drand_variation2.phpt94 int(%i)
97 int(%i)
100 int(%i)
103 int(%i)
106 int(%i)
109 int(%i)
112 int(%i)
120 int(%i)
123 int(%i)
126 int(%i)
[all …]
/PHP-7.1/ext/pcre/tests/
H A Dbug72688.phpt7 for ($i = 0; $i < 300; $i++) {
8 $pattern[] = "(?'group{$i}'{$i}$)";
/PHP-7.1/ext/gd/tests/
H A Dbug43475.phpt17 $i = 0;
18 while ($i < 16 * $thickness) {
19 $style[$i++] = $color;
21 while ($i < 20 * $thickness) {
22 $style[$i++] = IMG_COLOR_TRANSPARENT;
24 while ($i < 28 * $thickness) {
25 $style[$i++] = $color;
27 while ($i < 32 * $thickness) {
28 $style[$i++] = IMG_COLOR_TRANSPARENT;
/PHP-7.1/ext/dom/tests/
H A Dbug47430.phpt8 version="1.0"?><html><p><i>Hello</i></p><p><i>World!</i></p></html>';
12 $elements = $dom->getElementsByTagName('i');
13 foreach ($elements as $i) {
14 $i->previousSibling->nodeValue = '';
/PHP-7.1/ext/zip/examples/
H A Ddir.php17 for ($i=0; $i<$za->numFiles;$i++) { variable
18 echo "index: $i\n";
19 print_r($za->statIndex($i));
/PHP-7.1/ext/oci8/
H A Dconfig.w3236 for (i = 0; i < oci8_dirs.length; i++) {
37 oci8_lib_paths += oci8_dirs[i] + "\\lib;";
38 oci8_lib_paths += oci8_dirs[i] + "\\lib\\msvc;";
39 oci8_inc_paths += oci8_dirs[i] + "\\include;";
71 for (i = 0; i < oci8_11g_dirs.length; i++) {
72 oci8_11g_lib_paths += oci8_11g_dirs[i] + "\\lib;";
73 oci8_11g_lib_paths += oci8_11g_dirs[i] + "\\lib\\msvc;";
74 oci8_11g_inc_paths += oci8_11g_dirs[i] + "\\include;";
106 for (i = 0; i < oci8_12c_dirs.length; i++) {
107 oci8_12c_lib_paths += oci8_12c_dirs[i] + "\\lib;";
[all …]
/PHP-7.1/ext/mbstring/tests/
H A Dbug54494.phpt24 for ($i=0; $i < $length; $i++) {
25 $t = unpack("H*",mb_substr($string, $i, 1, $mode));
40 for ($i=0; $i < $length; $i++) {
41 $t = unpack("H*",mb_substr($string, $i, 1, $mode));

Completed in 42 milliseconds

12345678910>>...81