Home
last modified time | relevance | path

Searched refs:current_ns (Results 1 – 4 of 4) sorted by relevance

/PHP-8.4/ext/dom/
H A Delement.c1100 xmlNsPtr current_ns = nodep->nsDef; in dom_eliminate_ns() local
1101 if (current_ns == nsptr) { in dom_eliminate_ns()
1105 if (current_ns->next == nsptr) { in dom_eliminate_ns()
1106 current_ns->next = nsptr->next; in dom_eliminate_ns()
1109 current_ns = current_ns->next; in dom_eliminate_ns()
1110 } while (current_ns != NULL); in dom_eliminate_ns()
H A Dphp_dom.c2512 xmlNsPtr current_ns = src_node->nsDef; in dom_clone_container_helper() local
2514 php_dom_ns_compat_mark_attribute(ns_mapper, clone, current_ns); in dom_clone_container_helper()
2515 } while ((current_ns = current_ns->next) != NULL); in dom_clone_container_helper()
/PHP-8.4/ext/standard/
H A Dbasic_functions.c1203 uint64_t current_ns, target_ns, diff_ns; local
1221 current_ns = ((uint64_t) tm.tv_sec) * ns_per_sec + ((uint64_t) tm.tv_usec) * 1000;
1222 if (target_ns < current_ns) {
1227 diff_ns = target_ns - current_ns;
/PHP-8.4/Zend/
H A Dzend_compile.c9306 zend_string *current_ns = FC(current_namespace); in zend_compile_use() local
9329 if (!current_ns) { in zend_compile_use()
9347 if (current_ns) { in zend_compile_use()
9348 zend_string *ns_name = zend_string_alloc(ZSTR_LEN(current_ns) + 1 + ZSTR_LEN(new_name), 0); in zend_compile_use()
9349 zend_str_tolower_copy(ZSTR_VAL(ns_name), ZSTR_VAL(current_ns), ZSTR_LEN(current_ns)); in zend_compile_use()
9350 ZSTR_VAL(ns_name)[ZSTR_LEN(current_ns)] = '\\'; in zend_compile_use()
9351 …memcpy(ZSTR_VAL(ns_name) + ZSTR_LEN(current_ns) + 1, ZSTR_VAL(lookup_name), ZSTR_LEN(lookup_name) … in zend_compile_use()

Completed in 101 milliseconds