Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/
H A Dbasic_functions.c1299 uint64_t current_ns, target_ns, diff_ns; local
1311 current_ns = ((uint64_t) tm.tv_sec) * ns_per_sec + ((uint64_t) tm.tv_usec) * 1000;
1312 if (target_ns < current_ns) {
1317 diff_ns = target_ns - current_ns;
/PHP-8.0/Zend/
H A Dzend_compile.c7558 zend_string *current_ns = FC(current_namespace); in zend_compile_use() local
7581 if (!current_ns) { in zend_compile_use()
7599 if (current_ns) { in zend_compile_use()
7600 zend_string *ns_name = zend_string_alloc(ZSTR_LEN(current_ns) + 1 + ZSTR_LEN(new_name), 0); in zend_compile_use()
7601 zend_str_tolower_copy(ZSTR_VAL(ns_name), ZSTR_VAL(current_ns), ZSTR_LEN(current_ns)); in zend_compile_use()
7602 ZSTR_VAL(ns_name)[ZSTR_LEN(current_ns)] = '\\'; in zend_compile_use()
7603 …memcpy(ZSTR_VAL(ns_name) + ZSTR_LEN(current_ns) + 1, ZSTR_VAL(lookup_name), ZSTR_LEN(lookup_name) … in zend_compile_use()

Completed in 113 milliseconds