Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 244) sorted by last modified time

12345678910

/php-src/ext/ffi/
H A Dffi.c5918 …har *name, size_t name_len, zend_ffi_val *val, int64_t *min, int64_t *max, int64_t *last) /* {{{ */ argument
5934 if (*last == 0x7FFFFFFFFFFFFFFFLL) {
5939 && (uint64_t)*last == 0xFFFFFFFFFFFFFFFFULL) {
5943 value = *last + 1;
6009 *last = value;
/php-src/
H A DNEWS277 <<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>
H A DUPGRADING26 if the last path component contained a period. In that case, a 404 error was
/php-src/ext/dom/
H A Dentityreference.c78 reference->last = (xmlNodePtr) entity; in dom_entity_reference_fetch_and_sync_declaration()
H A Dphp_dom.h141 void dom_reconcile_ns_list(xmlDocPtr doc, xmlNodePtr nodep, xmlNodePtr last);
H A Dphp_dom.c1919 static void dom_reconcile_ns_list_internal(xmlDocPtr doc, xmlNodePtr nodep, xmlNodePtr last, xmlNod… in dom_reconcile_ns_list_internal() argument
1926 …dom_reconcile_ns_list_internal(doc, nodep->children, nodep->last /* process the whole children lis… in dom_reconcile_ns_list_internal()
1929 if (nodep == last) { in dom_reconcile_ns_list_internal()
1936 void dom_reconcile_ns_list(xmlDocPtr doc, xmlNodePtr nodep, xmlNodePtr last) in dom_reconcile_ns_list() argument
1938 dom_reconcile_ns_list_internal(doc, nodep, last, nodep->parent); in dom_reconcile_ns_list()
1944 if (nodep == last) { in dom_reconcile_ns_list()
2225 nodep->last = NULL; in dom_remove_all_children()
2441 dst_doc->children = dst_doc->last = (xmlNodePtr) dst_doc->intSubset; in dom_clone_helper()
2465 cloned->prev = cloned_parent->last; in dom_clone_helper()
2466 cloned_parent->last->next = cloned; in dom_clone_helper()
[all …]
H A Dnode.c325 xmlNodePtr last = NULL; in dom_node_last_child_read() local
327 last = nodep->last; in dom_node_last_child_read()
330 if (!last) { in dom_node_last_child_read()
785 nodep->last = fragment->last; in _php_dom_insert_fragment()
809 fragment->last = NULL; in _php_dom_insert_fragment()
910 xmlNodePtr last = child->last; in dom_node_insert_before_legacy() local
960 xmlNodePtr last = child->last; in dom_node_insert_before_legacy() local
1178 xmlNodePtr last = newchild->last; in dom_node_replace_child() local
1319 nodep->last = child; in dom_node_append_child_legacy()
1321 child = nodep->last; in dom_node_append_child_legacy()
[all …]
H A Dhtml5_parser.c199 lxml_attr->children = lxml_attr->last = lxml_text; in lexbor_libxml2_bridge_convert()
/php-src/ext/libxml/
H A Dlibxml.c111 ZEND_ASSERT(last->next == NULL); in php_libxml_set_old_ns_list()
128 last->next = doc->oldNs->next; in php_libxml_set_old_ns_list()
290 xmlNsPtr last = ns; in php_libxml_node_free() local
291 while (last->next) { in php_libxml_node_free()
292 last = last->next; in php_libxml_node_free()
294 php_libxml_set_old_ns_list(node->doc, ns, last); in php_libxml_node_free()
828 xmlErrorPtr last = zend_llist_get_last(LIBXML(error_list)); in php_libxml_pretend_ctx_error_ex() local
829 if (last) { in php_libxml_pretend_ctx_error_ex()
830 if (!last->file) { in php_libxml_pretend_ctx_error_ex()
831 last->file = strdup(file); in php_libxml_pretend_ctx_error_ex()
[all …]
/php-src/ext/reflection/
H A Dphp_reflection.c625 zend_op *end = op + op_array->last; in get_recv_op()
/php-src/ext/opcache/
H A Dzend_accelerator_util_funcs.c180 && function2->op_array.last > 0) { in _zend_accel_function_hash_copy()
268 zend_op *end = op_array->opcodes + op_array->last; in zend_accel_build_delayed_early_binding_list()
300 zend_op *opline_end = op_array->opcodes + op_array->last; in zend_accel_finalize_delayed_early_binding_list()
/php-src/Zend/
H A Dzend_compile.c140 return CG(active_op_array)->last; in get_next_op_number()
146 uint32_t next_op_num = op_array->last++; in get_next_op()
1219 && old_function->op_array.last > 0) { in do_bind_function_error()
2273 …if (CG(active_op_array)->last && CG(active_op_array)->opcodes[CG(active_op_array)->last - 1].opcod… in zend_emit_tick()
9626 opline = &CG(active_op_array)->opcodes[CG(active_op_array)->last-1]; in zend_compile_assign_coalesce()
10032 zend_ast *last = CG(ast); in zend_compile_const() local
10034 while (last && last->kind == ZEND_AST_STMT_LIST) { in zend_compile_const()
10035 zend_ast_list *list = zend_ast_get_list(last); in zend_compile_const()
10039 last = list->child[list->children-1]; in zend_compile_const()
10041 if (last && last->kind == ZEND_AST_HALT_COMPILER) { in zend_compile_const()
[all …]
H A Dzend_inheritance.c938 zend_op *end = op + fptr->op_array.last; in zend_get_function_declaration()
H A Dzend.c1994 ZEND_API void zend_map_ptr_extend(size_t last) in zend_map_ptr_extend() argument
1996 if (last > CG(map_ptr_last)) { in zend_map_ptr_extend()
1999 if (last >= CG(map_ptr_size)) { in zend_map_ptr_extend()
2001 CG(map_ptr_size) = ZEND_MM_ALIGNED_SIZE_EX(last, 4096); in zend_map_ptr_extend()
2006 memset(ptr, 0, (last - CG(map_ptr_last)) * sizeof(void*)); in zend_map_ptr_extend()
2007 CG(map_ptr_last) = last; in zend_map_ptr_extend()
/php-src/ext/opcache/jit/ir/
H A Dir_private.h537 uint32_t last; in ir_sparse_set_del() local
540 last = IR_SPARSE_SET_DENSE(set, set->len - 1); in ir_sparse_set_del()
541 if (last != n) { in ir_sparse_set_del()
544 IR_SPARSE_SET_DENSE(set, idx) = last; in ir_sparse_set_del()
545 IR_SPARSE_SET_SPARSE(set, last) = idx; in ir_sparse_set_del()
/php-src/ext/mbstring/
H A Dmbstring.c5980 char *last=NULL; in php_mb_safe_strrchr() local
5988 last = (char *)p; in php_mb_safe_strrchr()
6003 last = (char *)p; in php_mb_safe_strrchr()
6013 return last; in php_mb_safe_strrchr()
/php-src/ext/dom/lexbor/lexbor/selectors/
H A Dselectors.h92 lxb_selectors_entry_t *last; member
H A Dselectors.c272 entry->selector = list->last; in lxb_selectors_find()
304 entry->selector = list->last; in lxb_selectors_match_node()
480 selectors->current->last = entry; in lxb_selectors_state_find()
775 entry = selectors->current->last; in lxb_selectors_state_pseudo_class_function()
788 switch (main->parent->last->combinator) { in lxb_selectors_next_node()
874 parent = selectors->current->last; in lxb_selectors_state_after_find_has()
943 parent = selectors->current->last; in lxb_selectors_state_after_find_has()
966 parent = selectors->current->last; in lxb_selectors_state_after_find()
1012 parent = selectors->current->last; in lxb_selectors_state_after_find()
1038 selector = current->parent->last->selector; in lxb_selectors_state_after_nth_child()
[all …]
/php-src/ext/dom/lexbor/lexbor/html/
H A Dtree.c1012 bool last = false; in lxb_html_tree_reset_insertion_mode_appropriately() local
1024 last = true; in lxb_html_tree_reset_insertion_mode_appropriately()
1035 if (last) { in lxb_html_tree_reset_insertion_mode_appropriately()
1046 if (last) { in lxb_html_tree_reset_insertion_mode_appropriately()
1084 if (last == false) { in lxb_html_tree_reset_insertion_mode_appropriately()
1121 if (last == false) { in lxb_html_tree_reset_insertion_mode_appropriately()
1151 if (last) { in lxb_html_tree_reset_insertion_mode_appropriately()
1577 if (last == furthest_block) { in lxb_html_tree_adoption_agency_algorithm()
1584 if (last->parent != NULL) { in lxb_html_tree_adoption_agency_algorithm()
1591 last = node; in lxb_html_tree_adoption_agency_algorithm()
[all …]
H A Dtokenizer.c315 tkz->last = end; in lxb_html_tokenizer_chunk()
H A Dtokenizer.h75 const lxb_char_t *last; member
/php-src/ext/dom/lexbor/lexbor/html/tokenizer/
H A Dstate.c815 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_after_attribute_name()
964 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_attribute_value_double_quoted()
1058 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_attribute_value_single_quoted()
1149 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_attribute_value_unquoted()
1232 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_after_attribute_value_quoted()
1594 lxb_html_tokenizer_state_token_set_begin(tkz, tkz->last); in lxb_html_tokenizer_state_cdata_section_before()
1650 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_cdata_section()
H A Dstate.h109 (tkz->token->end = tkz->last)
132 (tkz->token->attr_last->name_end = tkz->last)
145 (tkz->token->attr_last->value_end = tkz->last)
H A Dstate_comment.c148 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_comment_start_dash()
378 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_comment_end_dash()
430 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_comment_end()
476 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_comment_end_bang()
H A Dstate_script.c512 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_script_data_escaped()
576 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_script_data_escaped_dash()
942 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_script_data_double_escaped()
1006 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_script_data_double_escaped_dash()
1072 lxb_html_tokenizer_error_add(tkz->parse_errors, tkz->last, in lxb_html_tokenizer_state_script_data_double_escaped_dash_dash()

Completed in 240 milliseconds

12345678910