Home
last modified time | relevance | path

Searched refs:i (Results 326 – 350 of 1643) sorted by relevance

1...<<11121314151617181920>>...66

/PHP-5.4/tests/lang/
H A Dexecution_order.phpt127 $i = 0;
130 echo $a[$i++] + $a[$i++];
133 $i = -1;
135 echo $a[++$i] + $a[++$i];
138 $i = 0;
140 echo $a[$i] + ($a[$i]=400);
146 echo ($a[$i]=400) + $a[$i];
/PHP-5.4/TSRM/
H A Dtsrm_nw.c59 int ptrLen = 0, argc = 0, i = 0, envCount = 0, err = 0; local
148 for (i = 0; i < argc; i++) {
149 if (argv[i])
150 free (argv[i]);
218 for (i = 0; i < argc; i++) {
219 if (argv[i])
220 free (argv[i]);
/PHP-5.4/Zend/tests/
H A Dconcat_001.phpt17 $i = 222;
22 var_dump($a.$i);
28 var_dump($o.$i);
34 var_dump($s.$i);
38 var_dump($i.$a);
39 var_dump($i.$o);
40 var_dump($i.$s);
41 var_dump($i.$d);
42 var_dump($i.$i);
47 var_dump($d.$i);
H A Dgc_014.phpt8 for ($i = 0; $i < 10001; $i++) {
10 $a->{"a".$i} = $a;
/PHP-5.4/ext/mbstring/oniguruma/
H A Dregtrav.c39 int r, i; in capture_tree_traverse() local
50 for (i = 0; i < node->num_childs; i++) { in capture_tree_traverse()
51 r = capture_tree_traverse(node->childs[i], at, in capture_tree_traverse()
/PHP-5.4/ext/gd/libgd/
H A Dgd_arc.c60 int i; in gdImageFilledEllipse() local
96 for(i=mx1;i<=mx2;i++){ in gdImageFilledEllipse()
97 gdImageSetPixel(im,i,my1,c); in gdImageFilledEllipse()
101 for(i=mx1;i<=mx2;i++){ in gdImageFilledEllipse()
102 gdImageSetPixel(im,i,my2,c); in gdImageFilledEllipse()
/PHP-5.4/ext/com_dotnet/
H A Dcom_com.c471 int i, byref_count = 0, j; in php_com_do_invoke_byref() local
498 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
507 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
515 memcpy(&vargs[i], &byref_vals[j], sizeof(vargs[i])); in php_com_do_invoke_byref()
531 for (i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
552 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
569 php_com_zval_from_variant(*args[nargs - i - 1], &vargs[i], in php_com_do_invoke_byref()
575 VariantClear(&vargs[i]); in php_com_do_invoke_byref()
592 int i; in php_com_do_invoke_by_id() local
599 for (i = 0; i < nargs; i++) { in php_com_do_invoke_by_id()
[all …]
/PHP-5.4/ext/oci8/tests/
H A Dbug38173.phpt28 for($i=0; $i < 5; $i++) {
29 $insert = "INSERT INTO t1 VALUES(".$i.")";
34 for($i=0; $i < 5; $i++) {
35 $insert = "INSERT INTO t2 VALUES(".$i.")";
/PHP-5.4/ext/date/tests/
H A Dbug55253.phpt15 echo 'Zone Type 3: ' . $date3->format('Y-m-d H:i:s T') . "\n";
16 echo 'Zone Type 2: ' . $date2->format('Y-m-d H:i:s T') . "\n";
18 echo $interval->format('Add %h hours %i minutes') . "\n";
22 echo 'Zone Type 3: ' . $date3->format('Y-m-d H:i:s T') . "\n";
23 echo 'Zone Type 2: ' . $date2->format('Y-m-d H:i:s T') . "\n";
29 echo $interval->format('Subtract %h hours %i minutes from expected') . "\n";
33 echo 'Zone Type 3: ' . $date3->format('Y-m-d H:i:s T') . "\n";
34 echo 'Zone Type 2: ' . $date2->format('Y-m-d H:i:s T') . "\n";
H A Ddate_format_basic1.phpt17 var_dump( date_format($date, "F j, Y, g:i a") );
21 var_dump( date_format($date, 'h-i-s, j-m-y, it is w Day') );
22 var_dump( date_format($date, '\i\t \i\s \t\h\e jS \d\a\y.') );
23 var_dump( date_format($date, "D M j G:i:s T Y") );
24 var_dump( date_format($date, 'H:m:s \m \i\s\ \m\o\n\t\h') );
25 var_dump( date_format($date, "H:i:s") );
H A DDateTime_format_basic1.phpt17 var_dump( $date->format( "F j, Y, g:i a") );
21 var_dump( $date->format( 'h-i-s, j-m-y, it is w Day') );
22 var_dump( $date->format( '\i\t \i\s \t\h\e jS \d\a\y.') );
23 var_dump( $date->format( "D M j G:i:s T Y") );
24 var_dump( $date->format( 'H:m:s \m \i\s\ \m\o\n\t\h') );
25 var_dump( $date->format( "H:i:s") );
/PHP-5.4/ext/hash/
H A Dphp_hash.h138 int i; in php_hash_bin2hex() local
140 for(i = 0; i < in_len; i++) { in php_hash_bin2hex()
141 out[i * 2] = hexits[in[i] >> 4]; in php_hash_bin2hex()
142 out[(i * 2) + 1] = hexits[in[i] & 0x0F]; in php_hash_bin2hex()
/PHP-5.4/ext/fileinfo/libmagic/
H A Dis_tar.c96 int i; in is_tar() local
107 for (i = sizeof(union record); --i >= 0;) in is_tar()
111 for (i = sizeof(header->header.chksum); --i >= 0;) in is_tar()
112 sum -= header->header.chksum[i]; in is_tar()
/PHP-5.4/ext/session/tests/
H A Dsession_decode_variation2.phpt24 var_dump(session_decode("foo|a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}guff|R:1;blah|R:1;"));
/PHP-5.4/ext/pdo/tests/
H A Dbug_42917.phpt19 for ($i = 0; $i < 5; $i++) {
20 $db->exec("INSERT INTO test (a,b,c) VALUES('test".$i."','".$i."','".$i."')");
/PHP-5.4/ext/spl/tests/
H A Drecursive_tree_iterator_008.phpt15 for($i = 0; $i < 6; ++$i) {
16 $it->setPrefixPart($i, $i);
H A Dbug61453.phpt7 for($i = 0; $i < $limit; $i++){
11 die("this should never happen, but did after $i iteration");
/PHP-5.4/ext/standard/
H A Ddns_win32.c207 DWORD i = 0; in php_parserr() local
219 for (i = 0; i < count; i++) { in php_parserr()
225 for (i = 0; i < count; i++) { in php_parserr()
226 int len = strlen(data_txt->pStringArray[i]); in php_parserr()
258 int i; in php_parserr() local
262 for (i = 0; i < 4; ++i) { in php_parserr()
264 out[i * 2] = htons(LOWORD(chunk)); in php_parserr()
265 out[i * 2 + 1] = htons(HIWORD(chunk)); in php_parserr()
268 for(i=0; i < 8; i++) { in php_parserr()
269 if (out[i] != 0) { in php_parserr()
[all …]
/PHP-5.4/Zend/
H A Dzend_objects_API.c47 zend_uint i = 1; in zend_objects_store_call_destructors() local
49 for (i = 1; i < objects->top ; i++) { in zend_objects_store_call_destructors()
50 if (objects->object_buckets[i].valid) { in zend_objects_store_call_destructors()
57 obj->dtor(obj->object, i TSRMLS_CC); in zend_objects_store_call_destructors()
73 zend_uint i; in zend_objects_store_mark_destructed() local
78 for (i = 1; i < objects->top ; i++) { in zend_objects_store_mark_destructed()
79 if (objects->object_buckets[i].valid) { in zend_objects_store_mark_destructed()
87 zend_uint i = 1; in zend_objects_store_free_object_storage() local
89 for (i = 1; i < objects->top ; i++) { in zend_objects_store_free_object_storage()
90 if (objects->object_buckets[i].valid) { in zend_objects_store_free_object_storage()
[all …]
/PHP-5.4/ext/ereg/tests/
H A D009.phpt8 for ($i = 0; $i < count($a); $i++) {
9 echo $a[$i] . "\n";
/PHP-5.4/ext/openssl/tests/
H A Dopenssl_random_pseudo_bytes.phpt7 for ($i = 0; $i < 10; $i++) {
8 var_dump(bin2hex(openssl_random_pseudo_bytes($i, $strong)));
/PHP-5.4/ext/dom/
H A Dxpath.c79 int result, i, ret; in dom_xpath_ext_function_php() local
109 for (i = nargs - 1; i >= 0; i--) { in dom_xpath_ext_function_php()
122 for (i = nargs - 2; i >= 0; i--) { in dom_xpath_ext_function_php()
124 MAKE_STD_ZVAL(args[i]); in dom_xpath_ext_function_php()
142 array_init(args[i]); in dom_xpath_ext_function_php()
177 fci.params[i] = &args[i]; in dom_xpath_ext_function_php()
188 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php()
249 for (i = 0; i < nargs - 1; i++) { in dom_xpath_ext_function_php()
250 zval_ptr_dtor(&args[i]); in dom_xpath_ext_function_php()
470 int i; in php_xpath_eval() local
[all …]
/PHP-5.4/ext/oci8/
H A Doci8_statement.c210 for (i = 0; i < statement->ncolumns; i++) { in php_oci_statement_fetch()
235 for (i = 0; i < statement->ncolumns; i++) { in php_oci_statement_fetch()
265 for (i = 0; i < statement->ncolumns; i++) { in php_oci_statement_fetch()
278 for (i = 0; i < statement->ncolumns; i++) { in php_oci_statement_fetch()
316 for (i = 0; i < statement->ncolumns; i++) { in php_oci_statement_get_column()
905 for (i = 0; i < bind->array.current_length; i++) { in php_oci_bind_post_exec()
1539 for (i = 0; i < bind->array.current_length; i++) { in php_oci_bind_array_helper_string()
1553 for (i = 0; i < max_table_length; i++) { in php_oci_bind_array_helper_string()
1594 for (i = 0; i < max_table_length; i++) { in php_oci_bind_array_helper_number()
1632 for (i = 0; i < max_table_length; i++) { in php_oci_bind_array_helper_double()
[all …]
/PHP-5.4/ext/mysqlnd/
H A Dmysqlnd_ps.c625 for (i = 0; i < stmt->field_count; i++) { in MYSQLND_METHOD()
660 for (i = 0; i < stmt->param_count; i++) { in MYSQLND_METHOD()
763 for (i = 0; i < result->field_count; i++) { in mysqlnd_stmt_fetch_row_buffered()
865 for (i = 0; i < field_count; i++) { in mysqlnd_stmt_fetch_row_unbuffered()
1052 for (i = 0; i < field_count; i++) { in mysqlnd_fetch_stmt_row_cursor()
1207 for (i = 0; i < stmt->param_count; i++) { in MYSQLND_METHOD()
1423 for (i = 0; i < stmt->param_count; i++) { in MYSQLND_METHOD()
1438 for (i = 0; i < stmt->param_count; i++) { in MYSQLND_METHOD()
1577 for (i = 0; i < stmt->field_count; i++) { in MYSQLND_METHOD()
1996 for (i = 0; i < stmt->field_count; i++) { in mysqlnd_stmt_separate_result_bind()
[all …]
/PHP-5.4/ext/pdo_pgsql/tests/
H A Dbug64953.phpt20 $st = $pdo->prepare('SELECT ?::char as i');
26 $st = $pdo->prepare('SELECT (?)::char as i');
29 var_dump($st->fetch()); // return array(1) { ["i"]=> string(1) "1" }
33 $st = $pdo->prepare("SELECT :int::int as i");
47 ["i"]=>
53 ["i"]=>
60 ["i"]=>

Completed in 62 milliseconds

1...<<11121314151617181920>>...66