Home
last modified time | relevance | path

Searched refs:i (Results 76 – 100 of 2233) sorted by last modified time

12345678910>>...90

/php-src/sapi/phpdbg/
H A Dphpdbg_watch.c1326 PHPDBG_API int phpdbg_watchpoint_parse_input(char *input, size_t len, HashTable *parent, size_t i, … argument
1327 …return phpdbg_parse_variable_with_arg(input, len, parent, i, (phpdbg_parse_var_with_arg_func) phpd…
/php-src/ext/random/
H A Dengine_user.c49 for (size_t i = 0; i < size; i++) { in generate() local
50 result += ((uint64_t) (unsigned char) Z_STRVAL(retval)[i]) << (8 * i); in generate()
H A Dengine_xoshiro256starstar.c66 for (uint32_t i = 0; i < 4; i++) { in jump() local
68 if (jmp[i] & 1ULL << j) { in jump()
126 for (uint32_t i = 0; i < 4; i++) { in serialize() local
127 ZVAL_STR(&t, php_random_bin2hex_le(&s->state[i], sizeof(uint64_t))); in serialize()
144 for (uint32_t i = 0; i < 4; i++) { in unserialize() local
145 t = zend_hash_index_find(data, i); in unserialize()
149 if (!php_random_hex2bin_le(Z_STR_P(t), &s->state[i])) { in unserialize()
233 for (uint32_t i = 0; i < 4; i++) { in PHP_METHOD() local
234 t[i] = 0; in PHP_METHOD()
236 t[i] += ((uint64_t) (unsigned char) ZSTR_VAL(str_seed)[(i * 8) + j]) << (j * 8); in PHP_METHOD()
H A Dengine_combinedlcg.c78 for (uint32_t i = 0; i < 2; i++) { in serialize() local
79 ZVAL_STR(&t, php_random_bin2hex_le(&s->state[i], sizeof(uint32_t))); in serialize()
91 for (uint32_t i = 0; i < 2; i++) { in unserialize() local
92 t = zend_hash_index_find(data, i); in unserialize()
96 if (!php_random_hex2bin_le(Z_STR_P(t), &s->state[i])) { in unserialize()
H A Dengine_mt19937.c108 for (uint32_t i = N - M; i--; ++p) { in mt19937_reload() local
111 for (uint32_t i = M; --i; ++p) { in mt19937_reload() local
116 for (uint32_t i = N - M; i--; ++p) { in mt19937_reload() local
119 for (uint32_t i = M; --i; ++p) { in mt19937_reload() local
130 uint32_t i, prev_state; in php_random_mt19937_seed32() local
137 for (i = 1; i < N; i++) { in php_random_mt19937_seed32()
141 state->count = i; in php_random_mt19937_seed32()
179 for (uint32_t i = 0; i < N; i++) { in serialize() local
201 for (uint32_t i = 0; i < N; i++) { in unserialize() local
307 for (size_t i = 0; i < generated.size; i++) { in PHP_METHOD() local
[all …]
H A Dengine_pcgoneseq128xslrr64.c94 for (uint32_t i = 0; i < 2; i++) { in unserialize() local
95 t = zend_hash_index_find(data, i); in unserialize()
99 if (!php_random_hex2bin_le(Z_STR_P(t), &u[i])) { in unserialize()
169 for (uint32_t i = 0; i < 2; i++) { in PHP_METHOD() local
170 t[i] = 0; in PHP_METHOD()
172 t[i] += ((uint64_t) (unsigned char) ZSTR_VAL(str_seed)[(i * 8) + j]) << (j * 8); in PHP_METHOD()
/php-src/ext/filter/
H A Dfilter.c103 for (i = 0; i < size; ++i) { in ZEND_GET_MODULE()
105 IF_G(default_filter) = filter_list[i].id; in ZEND_GET_MODULE()
212 for (i = 0; i < size; ++i) { in php_find_filter()
213 if (filter_list[i].id == id) { in php_find_filter()
214 return filter_list[i]; in php_find_filter()
218 for (i = 0; i < size; ++i) { in php_find_filter()
220 return filter_list[i]; in php_find_filter()
734 for (i = 0; i < size; ++i) { in PHP_FUNCTION()
743 int i; in PHP_FUNCTION() local
752 for (i = 0; i < size; ++i) { in PHP_FUNCTION()
[all …]
/php-src/
H A Drun-tests.php384 for ($i = 1; $i < $argc; $i++) {
386 $switch = substr($argv[$i], 1, 1);
387 $repeat = substr($argv[$i], 0, 1) == '-';
443 $i--;
455 $conf_passed = $argv[++$i];
503 $php = $argv[++$i];
517 $output_file = $argv[++$i];
547 $temp_source = $argv[++$i];
550 $temp_target = $argv[++$i];
594 $switch = $argv[$i];
[all …]
/php-src/ext/opcache/
H A Dzend_accelerator_util_funcs.c72 for (uint32_t i = 0; i < persistent_script->num_warnings; i++) { in free_persistent_script() local
73 zend_error_info *info = persistent_script->warnings[i]; in free_persistent_script()
325 for (uint32_t i = 0; i < persistent_script->num_early_bindings; i++) { in zend_accel_free_delayed_early_binding_list() local
326 zend_early_binding *early_binding = &persistent_script->early_bindings[i]; in zend_accel_free_delayed_early_binding_list()
351 for (uint32_t i = 0; i < persistent_script->num_early_bindings; i++) { in zend_accel_do_delayed_early_binding() local
352 zend_early_binding *early_binding = &persistent_script->early_bindings[i]; in zend_accel_do_delayed_early_binding()
459 #define ADLER32_SCALAR_DO2(buf, i) ADLER32_SCALAR_DO1(buf + i); ADLER32_SCALAR_DO1(buf + i + 1); argument
460 #define ADLER32_SCALAR_DO4(buf, i) ADLER32_SCALAR_DO2(buf, i); ADLER32_SCALAR_DO2(buf, i + 2); argument
461 #define ADLER32_SCALAR_DO8(buf, i) ADLER32_SCALAR_DO4(buf, i); ADLER32_SCALAR_DO4(buf, i + 4); argument
/php-src/Zend/
H A Dzend_API.c1237 i = 0; in zend_parse_va_args()
1273 i++; in zend_parse_va_args()
1608 for (uint32_t i = 0; i < class_type->default_properties_count; i++) { in zend_update_class_constants() local
2604 for (uint32_t i = 0; i < num_args; i++) { in zend_check_magic_method_args() local
3022 for (i = 0; i < num_args; i++) { in zend_register_functions()
3053 for (i = 0; i < num_args; i++) { in zend_register_functions()
3163 i++; in zend_unregister_functions()
4317 for (uint32_t i = 0; i < argc; ++i) { in zend_fcall_info_argp() local
4318 ZVAL_COPY(&fci->params[i], &argv[i]); in zend_fcall_info_argp()
4333 for (uint32_t i = 0; i < argc; ++i) { in zend_fcall_info_argv() local
[all …]
H A Dzend_alloc.c903 int i = 0;
945 uint32_t i = 0; local
968 if (i >= free_tail || i == ZEND_MM_PAGES) {
1272 uint32_t i = 1; local
1275 chunk->map[page_num+i] = ZEND_MM_NRUN(bin_num, i);
1276 i++;
1974 for (i = 0; i < ZEND_MM_BINS; i++) {
2055 i++;
2125 i++;
2162 uint32_t i, j; local
[all …]
H A Dzend_strtod.c821 (i) int i; in i2b()
1024 for(i = b->maxwds; n1 > i; i <<= 1)
1028 for(i = 0; i < n; i++)
1538 for(i = 0; (j = s[i]) !=0; i++)
1854 for(i = 0; decimalpoint[i]; ++i) {
1877 for(i = 1; decimalpoint[i]; ++i) {
1975 for(i = 0; decimalpoint[i+1]; ++i);
2655 for(i = 1; i < nz; i++)
3015 for(i = 0; i < nd0; ++i)
3054 i = Emin - i;
[all …]
H A Dzend.c175 if (i >= 0 && i <= 1000000) { in ZEND_INI_MH()
375 int i; in print_hash() local
377 for (i = 0; i < indent; i++) { in print_hash()
383 for (i = 0; i < indent; i++) { in print_hash()
414 for (i = 0; i < indent; i++) { in print_hash()
426 int i = 0; in print_flat_hash() local
429 if (i++ > 0) { in print_flat_hash()
1714 for (uint32_t i = 0; i < EG(num_errors); i++) { in zend_emit_recorded_errors() local
1726 for (uint32_t i = 0; i < EG(num_errors); i++) { in zend_free_recorded_errors() local
1922 int i; in zend_execute_scripts() local
[all …]
/php-src/sapi/fpm/fpm/events/
H A Dkqueue.c116 int ret, i; in fpm_event_kqueue_wait() local
137 for (i = 0; i < ret; i++) { in fpm_event_kqueue_wait()
138 if (kevents[i].udata) { in fpm_event_kqueue_wait()
139 struct fpm_event_s *ev = (struct fpm_event_s *)kevents[i].udata; in fpm_event_kqueue_wait()
/php-src/ext/openssl/
H A Dopenssl.c666 for (i = 0; i < X509_NAME_entry_count(name); i++) { in php_openssl_add_assoc_name_entry()
881 for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) { in php_openssl_add_oid_section()
2037 for (i = 0; i < num; i++) { in openssl_x509v3_subjectAltName()
2171 for (i = 0; i < X509_PURPOSE_get_count(); i++) { in PHP_FUNCTION()
2200 for (i = 0; i < X509_get_ext_count(cert); i++) { in PHP_FUNCTION()
2827 for (i = 0; i < cert_num; i++) { in PHP_FUNCTION()
5750 for (i = 0; i < sk_X509_num(certs); i++) { in PHP_FUNCTION()
6391 for (i = 0; i < sk_X509_num(certs); i++) { in PHP_FUNCTION()
7152 for (i=0; i<nkeys; i++) { in PHP_FUNCTION()
7170 for (i=0; i<nkeys; i++) { in PHP_FUNCTION()
[all …]
/php-src/ext/pgsql/tests/
H A Dgh13519.phpt13 for ($i = 0; $i < 3; $i ++) {
17 for ($i = 0; $i < 3; $i ++) {
/php-src/ext/mbstring/
H A Dmbstring.c569 for (i = 0; i < len && start[i] != quote; ++i) { in php_mb_rfc1867_substring_conf()
1380 for (size_t i = 0; i < n; i++) { in PHP_FUNCTION() local
3035 for (size_t i = 0; i < out_len; i++) { in trim_each_wchar() local
3228 for (size_t i = 0; i < length; i++) { in init_candidate_array() local
3262 for (size_t i = 0; i < length; i++) { in start_string() local
3293 for (size_t i = 0; i < length; i++) { in count_demerits() local
3335 for (size_t i = 0; i < length; i++) { in count_demerits() local
4555 for (i = 0; to_r[i]; i++) { in PHP_FUNCTION()
4745 for (i = 0; i < n; i++) { in PHP_FUNCTION()
4811 for (i = 0; i < n; i++) { in PHP_FUNCTION()
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_check.c91 ir_ref i, j, n, *p, use; in ir_check() local
97 for (i = IR_UNUSED + 1, insn = ctx->ir_base + i; i < ctx->insns_count;) { in ir_check()
129 && use >= i in ir_check()
197 fprintf(stderr, "ir_base[%d].ops[%d] -> %d, %d doesn't dominate %d\n", i, j, use, use, i); in ir_check()
216 && use >= i in ir_check()
250 && !ir_check_use_list(ctx, use, i)) { in ir_check()
270 i, ir_type_name[type]); in ir_check()
297 ir_use_list *use_list = &ctx->use_lists[i]; in ir_check()
302 if (!ir_check_input_list(ctx, i, use)) { in ir_check()
366 i, ir_op_name[insn->op], count); in ir_check()
[all …]
/php-src/ext/dom/lexbor/lexbor/html/tree/
H A Dactive_formatting.c72 for (size_t i = 0; i < tree->active_formatting->length; i++) { in lxb_html_tree_active_formatting_find_by_node() local
73 if (list[i] == node) { in lxb_html_tree_active_formatting_find_by_node()
75 *return_pos = i; in lxb_html_tree_active_formatting_find_by_node()
H A Dopen_elements.c152 for (size_t i = 0; i < tree->open_elements->length; i++) { in lxb_html_tree_open_elements_find_by_node() local
153 if (list[i] == node) { in lxb_html_tree_open_elements_find_by_node()
155 *return_pos = i; in lxb_html_tree_open_elements_find_by_node()
204 for (size_t i = 0; i < tree->open_elements->length; i++) { in lxb_html_tree_open_elements_find() local
205 node = list[i]; in lxb_html_tree_open_elements_find()
209 *return_index = i; in lxb_html_tree_open_elements_find()
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Din_table_text.c83 for (size_t i = 0; i < lexbor_array_obj_length(pt_list); i++) { in lxb_html_tree_insertion_mode_in_table_text() local
84 text = lexbor_array_obj_get(pt_list, i); in lxb_html_tree_insertion_mode_in_table_text()
98 for (size_t i = 0; i < lexbor_array_obj_length(pt_list); i++) { in lxb_html_tree_insertion_mode_in_table_text() local
99 text = lexbor_array_obj_get(pt_list, i); in lxb_html_tree_insertion_mode_in_table_text()
122 for (size_t i = 0; i < lexbor_array_obj_length(pt_list); i++) { in lxb_html_tree_insertion_mode_in_table_text_erase() local
123 text = lexbor_array_obj_get(pt_list, i); in lxb_html_tree_insertion_mode_in_table_text_erase()
H A Dinitial.c292 size_t size, i; in lxb_html_tree_insertion_mode_initial_doctype_ckeck_public() local
299 for (i = 0; i < size; i++) { in lxb_html_tree_insertion_mode_initial_doctype_ckeck_public()
300 str = &lxb_html_tree_insertion_mode_initial_doctype_public_is[i]; in lxb_html_tree_insertion_mode_initial_doctype_ckeck_public()
314 for (i = 0; i < size; i++) { in lxb_html_tree_insertion_mode_initial_doctype_ckeck_public()
315 str = &lxb_html_tree_insertion_mode_initial_doctype_public_start[i]; in lxb_html_tree_insertion_mode_initial_doctype_ckeck_public()
339 for (size_t i = 0; i < size; i++) { in lxb_html_tree_insertion_mode_initial_doctype_ckeck_system() local
340 str = &lxb_html_tree_insertion_mode_initial_doctype_system_is[i]; in lxb_html_tree_insertion_mode_initial_doctype_ckeck_system()
364 for (size_t i = 0; i < size; i++) { in lxb_html_tree_insertion_mode_initial_doctype_ckeck_pubsys() local
365 str = &lxb_html_tree_insertion_mode_initial_doctype_sys_pub_start[i]; in lxb_html_tree_insertion_mode_initial_doctype_ckeck_pubsys()
399 for (size_t i = 0; i < size; i++) { in lxb_html_tree_insertion_mode_initial_doctype_check_limq() local
[all …]
/php-src/ext/dom/lexbor/lexbor/html/
H A Dtree.c590 for (size_t i = 0; i < len; i++) { in lxb_html_tree_adjust_svg_attributes() local
591 adjust = &lxb_html_tree_res_attr_adjust_svg_map[i]; in lxb_html_tree_adjust_svg_attributes()
631 for (size_t i = 0; i < len; i++) { in lxb_html_tree_adjust_foreign_attributes() local
632 adjust = &lxb_html_tree_res_attr_adjust_foreign_map[i]; in lxb_html_tree_adjust_foreign_attributes()
1324 for (size_t i = 0; i < tree->open_elements->length; i++) { in lxb_html_tree_check_scope_element() local
1325 node = tree->open_elements->list[i]; in lxb_html_tree_check_scope_element()
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c496 size_t i, length; in lxb_html_document_stylesheet_remove() local
531 for (i = 0; i < length; i++) { in lxb_html_document_stylesheet_remove()
532 sst_in = lexbor_array_get(document->css.stylesheets, i); in lxb_html_document_stylesheet_remove()
535 lexbor_array_delete(document->css.stylesheets, i, 1); in lxb_html_document_stylesheet_remove()
556 for (size_t i = 0; i < lexbor_array_length(ssts); i++) { in lxb_html_document_element_styles_attach() local
557 sst = lexbor_array_get(ssts, i); in lxb_html_document_element_styles_attach()
595 for (size_t i = 0; i < length; i++) { in lxb_html_document_stylesheet_destroy_all()
888 size_t i, length;
898 for (i = 0; i < length; i++) {
899 sst = lexbor_array_get(document->css.stylesheets, i);
/php-src/ext/dom/lexbor/lexbor/core/
H A Dstr.c194 for (i = 0; i < length; i++) { in lexbor_str_append_lowercase()
271 for (i = 0; i < target->length; i++) { in lexbor_str_stay_only_whitespace()
295 for (i = 0, offset = 0, ws_i = 0; i < target->length; i++) in lexbor_str_strip_collapse_whitespace()
333 for (i = 0; i < target->length; i++) { in lexbor_str_crop_whitespace_from_begin()
353 for (i = 0; i < target->length; i++) { in lexbor_str_whitespace_from_begin()
389 for (i = 0; i < sec_size; i++) { in lexbor_str_data_ncasecmp_first()
425 for (size_t i = 0; what_size <= (where_size - i); i++) { in lexbor_str_data_ncasecmp_contain() local
438 for (size_t i = 0; i < size; i++) { in lexbor_str_data_ncasecmp() local
453 for (size_t i = 0; i < size; i++) { in lexbor_str_data_nlocmp_right() local
466 for (size_t i = 0; i < size; i++) { in lexbor_str_data_nupcmp_right() local
[all …]

Completed in 198 milliseconds

12345678910>>...90