Home
last modified time | relevance | path

Searched refs:i (Results 351 – 375 of 1753) sorted by relevance

1...<<11121314151617181920>>...71

/PHP-5.5/ext/opcache/Optimizer/
H A Dzend_optimizer.c35 int i = 0; in zend_optimizer_lookup_cv() local
38 while (i < op_array->last_var) { in zend_optimizer_lookup_cv()
39 if (op_array->vars[i].name == name || in zend_optimizer_lookup_cv()
43 return i; in zend_optimizer_lookup_cv()
45 i++; in zend_optimizer_lookup_cv()
47 i = op_array->last_var; in zend_optimizer_lookup_cv()
51 op_array->vars[i].name = name; in zend_optimizer_lookup_cv()
57 return i; in zend_optimizer_lookup_cv()
64 int i = op_array->last_literal; in zend_optimizer_add_literal() local
66 if (i >= CG(context).literals_size) { in zend_optimizer_add_literal()
[all …]
/PHP-5.5/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()
H A Dregparse.c157 for (i = from; i <= to && i < SINGLE_BYTE_SIZE; i++) { in bitset_set_range()
175 for (i = 0; i < (int )BITSET_SIZE; i++) { bs[i] = ~(bs[i]); } in bitset_invert()
182 for (i = 0; i < (int )BITSET_SIZE; i++) { to[i] = ~(from[i]); } in bitset_invert_to()
189 for (i = 0; i < (int )BITSET_SIZE; i++) { dest[i] &= bs[i]; } in bitset_and()
196 for (i = 0; i < (int )BITSET_SIZE; i++) { dest[i] |= bs[i]; } in bitset_or()
203 for (i = 0; i < (int )BITSET_SIZE; i++) { dest[i] = bs[i]; } in bitset_copy()
242 for (i = 0; i < term_len; i++) in strdup_with_null()
1155 for (i = 0; i < n; i++) { in node_new_cclass_by_codepoint_range()
1795 for (i = 0; i < n; i++) { in not_code_range_buf()
1866 for (i = 0; i < n1; i++) { in or_code_range_buf()
[all …]
/PHP-5.5/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.5/ext/date/lib/
H A Dtimelib.c73 unsigned int i; in timelib_time_tz_abbr_update() local
77 for (i = 0; i < strlen(tz_abbr); i++) { in timelib_time_tz_abbr_update()
78 tm->tz_abbr[i] = toupper(tz_abbr[i]); in timelib_time_tz_abbr_update()
166 int i; in timelib_error_container_dtor() local
168 for (i = 0; i < errors->warning_count; i++) { in timelib_error_container_dtor()
169 free(errors->warning_messages[i].message); in timelib_error_container_dtor()
172 for (i = 0; i < errors->error_count; i++) { in timelib_error_container_dtor()
173 free(errors->error_messages[i].message); in timelib_error_container_dtor()
210 d->sse, d->y < 0 ? "-" : "", TIMELIB_LLABS(d->y), d->m, d->d, d->h, d->i, d->s); in timelib_dump_date()
240 d->relative.y, d->relative.m, d->relative.d, d->relative.h, d->relative.i, d->relative.s); in timelib_dump_date()
[all …]
/PHP-5.5/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.5/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.5/ext/ereg/tests/
H A D009.phpt8 for ($i = 0; $i < count($a); $i++) {
9 echo $a[$i] . "\n";
/PHP-5.5/ext/spl/tests/
H A Dbug61453.phpt7 for($i = 0; $i < $limit; $i++){
11 die("this should never happen, but did after $i iteration");
H A Drecursive_tree_iterator_008.phpt15 for($i = 0; $i < 6; ++$i) {
16 $it->setPrefixPart($i, $i);
/PHP-5.5/Zend/tests/
H A Dgc_014.phpt8 for ($i = 0; $i < 10001; $i++) {
10 $a->{"a".$i} = $a;
/PHP-5.5/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.5/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.5/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.5/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 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.5/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.5/ext/hash/
H A Dphp_hash.h139 int i; in php_hash_bin2hex() local
141 for(i = 0; i < in_len; i++) { in php_hash_bin2hex()
142 out[i * 2] = hexits[in[i] >> 4]; in php_hash_bin2hex()
143 out[(i * 2) + 1] = hexits[in[i] & 0x0F]; in php_hash_bin2hex()
/PHP-5.5/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.5/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.5/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.5/ext/standard/tests/math/
H A Ddecbin_basic.phpt20 for ($i = 0; $i < count($values); $i++) {
21 $res = decbin($values[$i]);
/PHP-5.5/ext/standard/tests/strings/
H A Dcount_chars.phpt6 for($i=0; $i<3; $i++) {
7 echo implode(count_chars($s, $i))."\n";
/PHP-5.5/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.5/ext/mysqlnd/
H A Dmysqlnd_ps.c626 for (i = 0; i < stmt->field_count; i++) { in MYSQLND_METHOD()
661 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()
864 for (i = 0; i < field_count; i++) { in mysqlnd_stmt_fetch_row_unbuffered()
1043 for (i = 0; i < field_count; i++) { in mysqlnd_fetch_stmt_row_cursor()
1192 for (i = 0; i < stmt->param_count; i++) { in MYSQLND_METHOD()
1408 for (i = 0; i < stmt->param_count; i++) { in MYSQLND_METHOD()
1423 for (i = 0; i < stmt->param_count; i++) { in MYSQLND_METHOD()
1562 for (i = 0; i < stmt->field_count; i++) { in MYSQLND_METHOD()
1981 for (i = 0; i < stmt->field_count; i++) { in mysqlnd_stmt_separate_result_bind()
[all …]

Completed in 100 milliseconds

1...<<11121314151617181920>>...71