Home
last modified time | relevance | path

Searched refs:i (Results 51 – 75 of 1643) sorted by relevance

12345678910>>...66

/PHP-5.4/ext/phar/
H A Dmakestub.php59 foreach ($s1split as $i => $chunk) {
61 $s1split[$i] = substr($chunk, 1);
65 $s1split[$i] .= $s1split[$i + 1][0];
69 foreach ($s3split as $i => $chunk) {
71 $s3split[$i] = substr($chunk, 1);
75 $s3split[$i] .= $s3split[$i + 1][0];
81 foreach ($s1split as $i => $chunk) {
82 $s1count = $i + 1;
89 $s3count = $i + 1;
98 $stub .= ', newstub1_' . $i;
[all …]
/PHP-5.4/ext/standard/tests/serialize/
H A Dserialization_arrays_001.phpt41i:0;i:0;i:1;i:1;i:2;i:-2;i:3;d:3.333333000000000101437080957111902534961700439453125;i:4;s:1:"a";i
H A Dserialization_arrays_002.phpt115 string(30) "a:3:{i:0;i:1;i:1;i:1;i:2;i:1;}"
159 string(30) "a:3:{i:1;i:1;i:0;R:2;i:2;i:1;}"
203 string(30) "a:3:{i:2;i:1;i:0;R:2;i:1;i:1;}"
247 string(30) "a:3:{i:0;i:1;i:1;R:2;i:2;i:1;}"
291 string(30) "a:3:{i:0;i:1;i:2;i:1;i:1;R:3;}"
335 string(30) "a:3:{i:0;i:1;i:1;i:1;i:2;R:2;}"
379 string(30) "a:3:{i:0;i:1;i:1;i:1;i:2;R:3;}"
423 string(30) "a:3:{i:2;i:1;i:0;R:2;i:1;R:2;}"
467 string(30) "a:3:{i:1;i:1;i:0;R:2;i:2;R:2;}"
511 string(30) "a:3:{i:0;i:1;i:1;R:2;i:2;R:2;}"
/PHP-5.4/ext/zip/lib/
H A Dzip_free.c49 int i; in _zip_free() local
65 for (i=0; i<za->nentry; i++) { in _zip_free()
66 _zip_entry_free(za->entry+i); in _zip_free()
71 for (i=0; i<za->nfile; i++) { in _zip_free()
72 if (za->file[i]->error.zip_err == ZIP_ER_OK) { in _zip_free()
73 _zip_error_set(&za->file[i]->error, ZIP_ER_ZIPCLOSED, 0); in _zip_free()
74 za->file[i]->za = NULL; in _zip_free()
/PHP-5.4/ext/fileinfo/libmagic/
H A Dcdf.c622 for (j = i = 0; i < ns; i++, j++) { in cdf_read_dir()
639 for (i = 0; i < dir->dir_len; i++) in cdf_read_dir()
699 for (i = 0; i < dir->dir_len; i++) in cdf_read_short_stream()
739 for (i = dir->dir_len; i > 0; i--) in cdf_read_summary_info()
814 for (i = 0; i < sh.sh_properties; i++) { in cdf_read_property_info()
1026 for (i = 0; i < __arraycount(vn); i++) in cdf_print_property_name()
1102 for (i = 0; i < sat->sat_len; i++) { in cdf_dump_sat()
1123 for (i = 0, j = 0; i < len; i++, p++) { in cdf_dump()
1158 for (i = 0; i < dir->dir_len; i++) { in cdf_dump_dir()
1210 for (i = 0; i < count; i++) {
[all …]
/PHP-5.4/ext/pgsql/tests/
H A D04async_query.phpt27 for ($i=0; $i < $rows; $i++)
29 pg_fetch_array($result, $i, PGSQL_NUM);
31 for ($i=0; $i < $rows; $i++)
35 for ($i=0; $i < $rows; $i++)
37 pg_fetch_row($result, $i);
39 for ($i=0; $i < $rows; $i++)
41 pg_fetch_result($result, $i, 0);
H A D23sync_query_params.phpt22 for ($i=0; $i < $rows; $i++)
24 pg_fetch_array($result, $i, PGSQL_NUM);
26 for ($i=0; $i < $rows; $i++)
30 for ($i=0; $i < $rows; $i++)
32 pg_fetch_row($result, $i);
34 for ($i=0; $i < $rows; $i++)
36 pg_fetch_result($result, $i, 0);
H A D24sync_query_prepared.phpt25 for ($i=0; $i < $rows; $i++)
27 pg_fetch_array($result, $i, PGSQL_NUM);
29 for ($i=0; $i < $rows; $i++)
33 for ($i=0; $i < $rows; $i++)
35 pg_fetch_row($result, $i);
37 for ($i=0; $i < $rows; $i++)
39 pg_fetch_result($result, $i, 0);
H A D03sync_query.phpt17 for ($i=0; $i < $rows; $i++)
19 pg_fetch_array($result, $i, PGSQL_NUM);
21 for ($i=0; $i < $rows; $i++)
25 for ($i=0; $i < $rows; $i++)
27 pg_fetch_row($result, $i);
29 for ($i=0; $i < $rows; $i++)
31 pg_fetch_result($result, $i, 0);
H A D25async_query_params.phpt31 for ($i=0; $i < $rows; $i++)
33 pg_fetch_array($result, $i, PGSQL_NUM);
35 for ($i=0; $i < $rows; $i++)
39 for ($i=0; $i < $rows; $i++)
41 pg_fetch_row($result, $i);
43 for ($i=0; $i < $rows; $i++)
45 pg_fetch_result($result, $i, 0);
/PHP-5.4/ext/zip/examples/
H A Dget_set_comments.php10 for ($i=0; $i<$z->numFiles; $i++) { variable
11 echo "index: $i\n";
12 print_r($z->getCommentIndex($i));
25 for ($i=0; $i<$z->numFiles; $i++) { variable
26 echo "index: $i\n";
27 print_r($z->getCommentIndex($i));
/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_ord2utf8.c72 register int i, j; in PRIV() local
74 for (i = 0; i < PRIV(utf8_table1_size); i++) in PRIV()
75 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV()
76 buffer += i; in PRIV()
77 for (j = i; j > 0; j--) in PRIV()
82 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV()
83 return i + 1; in PRIV()
/PHP-5.4/ext/mbstring/
H A Dphp_unicode.c104 unsigned long i; in php_unicode_is_prop() local
109 for (i = 0; mask1 && i < 32; i++) { in php_unicode_is_prop()
110 if ((mask1 & masks32[i]) && prop_lookup(code, i)) in php_unicode_is_prop()
114 for (i = 32; mask2 && i < _ucprop_size; i++) { in php_unicode_is_prop()
115 if ((mask2 & masks32[i & 31]) && prop_lookup(code, i)) in php_unicode_is_prop()
276 size_t i; in php_unicode_convert_case() local
292 for (i = 0; i < unicode_len; i+=4) { in php_unicode_convert_case()
293 UINT32_TO_BE_ARY(&unicode_ptr[i], in php_unicode_convert_case()
299 for (i = 0; i < unicode_len; i+=4) { in php_unicode_convert_case()
300 UINT32_TO_BE_ARY(&unicode_ptr[i], in php_unicode_convert_case()
[all …]
/PHP-5.4/ext/gd/tests/
H A Dcolorclosest.phpt27 for ($i=0; $i<255; $i++) imagecolorresolve($im, $i,0,0);
33 for ($i=0; $i<256; $i++) {
34 if ($i == 246) {
35 imagecolorallocate($im, $i,10,10);
37 imagecolorallocate($im, $i,0,0);
61 for ($i=0; $i<255; $i++) imagecolorresolvealpha($im, $i,0,0,1);
67 for ($i=0; $i<256; $i++) {
68 if ($i == 246) {
69 imagecolorallocatealpha($im, $i,10,10,1);
71 imagecolorallocatealpha($im, $i,0,0,100);
H A Dcopypalette.phpt11 for ($i=0; $i<256; $i++) {
12 imagecolorallocate($im, $i, $i, $i);
18 for ($i=0; $i<256; $i++) {
19 $c = imagecolorsforindex($im2, $i);
20 if ($c['red']!=$i || $c['green']!=$i || $c['blue']!=$i) {
/PHP-5.4/ext/mbstring/libmbfl/tests/
H A Demoji.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()
54 int i; in main() local
82 for (i = 0; i < result.len; i+= 2) { in main()
83 if (result.val[i] >= 0xD8 && result.val[i] < 0xE0) { // Surrogate pair in main()
84 int h = (result.val[i] & 0x07)<<8 | result.val[i+1]; in main()
85 int l = (result.val[i+2] & 0x03)<<8 | result.val[i+3]; in main()
88 i+=2; in main()
90 printf("U+%x\n",(result.val[i] << 8) | result.val[i+1]); in main()
/PHP-5.4/ext/standard/tests/math/
H A Dnumber_format_basic.phpt19 for ($i = 0; $i < count($values); $i++) {
20 $res = number_format($values[$i]);
25 for ($i = 0; $i < count($values); $i++) {
26 $res = number_format($values[$i], 2);
31 for ($i = 0; $i < count($values); $i++) {
32 $res = number_format($values[$i], 2, '.', ' ');
37 for ($i = 0; $i < count($values); $i++) {
38 $res = number_format($values[$i], 2, ',' , ' ');
/PHP-5.4/Zend/
H A Dzend_opcode.c161 int i; in cleanup_user_class_data() local
163 for (i = 0; i < ce->default_static_members_count; i++) { in cleanup_user_class_data()
179 for (i = 0; i < ce->default_static_members_count; i++) { in cleanup_internal_class_data()
240 i++; in _destroy_zend_class_traits_info()
259 i++; in _destroy_zend_class_traits_info()
277 for (i = 0; i < ce->default_properties_count; i++) { in destroy_zend_class()
287 for (i = 0; i < ce->default_static_members_count; i++) { in destroy_zend_class()
313 for (i = 0; i < ce->default_properties_count; i++) { in destroy_zend_class()
323 for (i = 0; i < ce->default_static_members_count; i++) { in destroy_zend_class()
369 i--; in destroy_op_array()
[all …]
/PHP-5.4/ext/gd/libgd/
H A Dgdkanji.c93 int c, i; in DetectKanjiCode() local
97 i = 0; in DetectKanjiCode()
114 c = str[i++]; in DetectKanjiCode()
393 for (i = 0; from[i] != '\0' && j < BUFSIZ; i++) in do_convert()
397 i++; in do_convert()
402 i++; in do_convert()
407 i++; in do_convert()
430 for (i = 0; from[i] != '\0' && j < BUFSIZ; i++) in do_convert()
521 for (i = 0; tmp[i] != '\0' && j < BUFSIZ; i++) in do_check_and_conv()
530 i += 2; in do_check_and_conv()
[all …]
/PHP-5.4/ext/ereg/regex/
H A Ddebug.c23 register int i; local
49 for (i = 0; i < g->ncategories; i++) {
50 nincat[i] = 0;
53 nincat[i]++;
56 for (i = 1; i < g->ncategories; i++)
57 if (nincat[i] == 1) {
64 for (i = 1; i < g->ncategories; i++)
97 register int i; local
150 for (i = 0; i < g->csetsize+1; i++) /* +1 flushes */
151 if (CHIN(cs, i) && i < g->csetsize) {
[all …]
/PHP-5.4/ext/spl/tests/
H A Dbug70366.phpt19 $inner = 'i:1234;:i:1;';
20 …xploit = 'a:5:{i:0;i:1;i:1;C:19:"SplDoublyLinkedList":'.strlen($inner).':{'.$inner.'}i:2;O:3:"obj"…
29 for ($i = 0; $i < 8; $i++) {
/PHP-5.4/ext/hash/
H A Dhash_joaat.c53 int i = 0; in PHP_JOAATFinal()
56 for (i = 0; i < 4; i++) { in PHP_JOAATFinal()
57 digest[i] = c[3 - i]; in PHP_JOAATFinal()
76 size_t i; in joaat_buf() local
79 for (i = 0; i < len; i++) { in joaat_buf()
80 hval += input[i]; in joaat_buf()
/PHP-5.4/scripts/dev/generate-phpt/src/setup/
H A DgtCommandLineOptions.php48 for ($i=1; $i<count($argv); $i++) {
50 if ($this->isShortOption($argv[$i])) {
51 $option = substr($argv[$i], 1);
53 throw new gtUnknownOptionException('Unrecognised command line option ' . $argv[$i]);
58 throw new gtUnknownOptionException('Unknown option ' . $argv[$i]);
66 if (!$this->isValidOptionArg($argv, $i + 1))
68 … throw new gtMissingArgumentException('Missing argument for command line option ' . $argv[$i]);
71 $i++;
72 $this->options[$option] = $argv[$i];
/PHP-5.4/win32/build/
H A Dbuildconf.js57 var c, i, ok, n;
89 for (i = 0; i < calls.length; i++) {
111 var i, mod_name, j;
118 for (i in module_names) {
136 var i, mod_name, j;
159 var i, mod_name, j;
185 for (i = 0; i < args.length; i++) {
186 arg = args(i);
241 for (i = 0; i < module_dirs.length; i++) {
253 for (i = 0; i < calls.length; i++) {
[all …]
/PHP-5.4/tests/lang/
H A D021.phpt6 for ($i=0; $i<=5; $i++)
8 echo "i=$i\n";
10 switch($i) {
34 i=0
36 i=1
38 i=2
40 i=3

Completed in 52 milliseconds

12345678910>>...66