Home
last modified time | relevance | path

Searched refs:common (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c1090 common->iref_ptr = common->ovector_start; in check_opcode_types()
3393 common->mode == PCRE2_JIT_PARTIAL_SOFT ? common->hit_start : common->start_ptr); in return_with_partial_match()
3448 if (common->utf || common->ucp) in char_has_othercase()
3472 if ((common->utf || common->ucp) && c > 127) in char_othercase()
3487 if (common->utf || common->ucp) in char_get_othercase_bit()
5184 read_char(common, common->nlmin, common->nlmax, NULL, READ_CHAR_NEWLINE); in mainloop_entry()
6236 read_char(common, common->nlmin, common->nlmax, NULL, READ_CHAR_NEWLINE); in fast_forward_newline()
8558 read_char(common, common->bsr_nlmin, common->bsr_nlmax, NULL, 0); in compile_char1_matchingpath()
8623 if (!common->utf || common->invalid_utf) in compile_char1_matchingpath()
11787 if (common->has_then && common->then_offsets[cc - common->start] != 0) in compile_matchingpath()
[all …]
H A Dpcre2_jit_simd_inc.h329 if (common->utf && offset > 0) in fast_forward_char_simd()
527 if (common->match_end_ptr != 0) in fast_forward_char_pair_simd()
734 if (common->match_end_ptr != 0) in fast_forward_char_pair_simd()
738 if (common->utf) in fast_forward_char_pair_simd()
755 if (common->match_end_ptr != 0) in fast_forward_char_pair_simd()
881 if (common->utf && offset > 0) in fast_forward_char_simd()
902 if (common->utf && offset > 0) in fast_forward_char_simd()
1059 if (common->match_end_ptr == 0) in fast_forward_char_pair_simd()
1082 if (common->utf) in fast_forward_char_pair_simd()
1091 if (common->utf) in fast_forward_char_pair_simd()
[all …]
/PHP-8.0/ext/opcache/
H A Dshared_alloc_posix.c35 zend_shared_segment common; member
66 …shared_segment->common.p = mmap(0, requested_size, PROT_READ | PROT_WRITE, MAP_SHARED, shared_segm… in create_segments()
67 if (shared_segment->common.p == MAP_FAILED) { in create_segments()
74 shared_segment->common.pos = 0; in create_segments()
75 shared_segment->common.size = requested_size; in create_segments()
82 munmap(shared_segment->common.p, shared_segment->common.size); in detach_segment()
H A Dshared_alloc_shm.c49 zend_shared_segment common; member
112 shared_segments[i].common.p = shmat(shared_segments[i].shm_id, NULL, 0); in create_segments()
113 if (shared_segments[i].common.p == (void *)-1) { in create_segments()
120 shared_segments[i].common.pos = 0; in create_segments()
121 shared_segments[i].common.size = allocate_size; in create_segments()
129 shmdt(shared_segment->common.p); in detach_segment()
/PHP-8.0/Zend/
H A Dzend_closures.c110 if (func->common.scope == NULL) { in zend_valid_closure_binding()
211 ce = closure->func.common.scope; in do_closure_bind()
319 if (!mptr->common.scope) { in zend_create_closure_from_callable()
327 if (!mptr->common.scope->__call) { in zend_create_closure_from_callable()
337 call.scope = mptr->common.scope; in zend_create_closure_from_callable()
402 invoke->common = closure->func.common; in zend_get_closure_invoke_method()
590 (closure->func.common.num_args || in zend_closure_get_debug_info()
713 || func->common.scope != scope in zend_create_closure()
725 func->common.scope = scope; in zend_create_closure()
758 if (!func->common.scope) { in zend_create_closure()
[all …]
H A Dzend_inheritance.c565 if (proto->common.required_num_args < fe->common.required_num_args) { in zend_do_perform_implementation_check()
672 if (fptr->common.scope) { in zend_get_function_declaration()
681 if (fptr->common.arg_info) { in zend_get_function_declaration()
912 if (child->common.scope != ce in do_inheritance_check_on_method_ex()
972 func, func->common.scope, parent, parent->common.scope, ce, child, in do_inherit_method()
976 func, func->common.scope, parent, parent->common.scope, ce, child, in do_inherit_method()
1583 return fn->common.scope->ce_flags & ZEND_ACC_TRAIT ? ce : fn->common.scope; in fixup_trait_scope()
1620 ZSTR_VAL(fn->common.scope->name), ZSTR_VAL(fn->common.function_name), in zend_add_trait_method()
1622 ZSTR_VAL(existing_fn->common.scope->name), ZSTR_VAL(existing_fn->common.function_name)); in zend_add_trait_method()
1655 fn->common.scope = ce; in zend_fixup_trait_method()
[all …]
H A Dzend_attributes.h94 uint32_t flags = func->common.type != ZEND_USER_FUNCTION ? ZEND_ATTRIBUTE_PERSISTENT : 0; in zend_add_function_attribute()
95 return zend_add_attribute(&func->common.attributes, name, argc, flags, 0, 0); in zend_add_function_attribute()
100 uint32_t flags = func->common.type != ZEND_USER_FUNCTION ? ZEND_ATTRIBUTE_PERSISTENT : 0; in zend_add_parameter_attribute()
101 return zend_add_attribute(&func->common.attributes, name, argc, flags, offset + 1, 0); in zend_add_parameter_attribute()
H A Dzend_execute_API.c177 EG(trampoline).common.function_name = NULL; in init_executor()
451 zend_class_entry *ce = func->common.scope; in get_active_class_name()
489 return ZSTR_VAL(func->common.function_name); in get_active_function_name()
507 if (func->common.scope && func->common.function_name) { in get_function_or_method_name()
508 return zend_create_member_string(func->common.scope->name, func->common.function_name); in get_function_or_method_name()
511 …return func->common.function_name ? zend_string_copy(func->common.function_name) : zend_string_ini… in get_function_or_method_name()
531 if (!func || func->common.num_args < arg_num) { in get_function_arg_name()
600 return ex->func->common.scope; in zend_get_executed_scope()
880 if (func->common.fn_flags & ZEND_ACC_FAKE_CLOSURE) { in zend_call_function()
989 fn->common.scope ? ZSTR_VAL(fn->common.scope->name) : "", in zend_call_known_function()
[all …]
H A Dzend_builtin_functions.c897 if ((mptr->common.fn_flags & ZEND_ACC_PUBLIC) in ZEND_FUNCTION()
902 scope == mptr->common.scope))) in ZEND_FUNCTION()
945 || !(func->common.fn_flags & ZEND_ACC_PRIVATE) || func->common.scope == ce); in ZEND_FUNCTION()
1754 if (func->common.function_name) { in ZEND_FUNCTION()
1766 if (func->common.scope) { in ZEND_FUNCTION()
1767 class_name = func->common.scope->name; in ZEND_FUNCTION()
1775 } else if (func->common.scope) { in ZEND_FUNCTION()
1776 class_name = func->common.scope->name; in ZEND_FUNCTION()
1834 && !func->common.scope in ZEND_FUNCTION()
1990 if (func->common.scope) { in zend_fetch_debug_backtrace()
[all …]
/PHP-8.0/ext/zend_test/
H A Dtest.c66 RETVAL_STR_COPY(EX(func)->common.function_name); in ZEND_FUNCTION()
70 zend_string_release(EX(func)->common.function_name); in ZEND_FUNCTION()
321 if (EXPECTED(EG(trampoline).common.function_name == NULL)) { in zend_test_class_method_get()
566 if (execute_data->func->common.scope) { in observer_begin()
616 if (execute_data->func->common.scope) { in observer_end()
629 if (fbc->common.function_name) { in observer_show_init()
630 if (fbc->common.scope) { in observer_show_init()
647 if (fbc->common.function_name) { in observer_show_init_backtrace()
648 if (fbc->common.scope) { in observer_show_init_backtrace()
649 …php_printf("%*s%s::%s()\n", indent, "", ZSTR_VAL(fbc->common.scope->name), ZSTR_VAL(fbc->common.fu… in observer_show_init_backtrace()
[all …]
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_print.c62 if (method->common.scope) { in phpdbg_print_function_helper()
66 ZSTR_VAL(method->common.scope->name), in phpdbg_print_function_helper()
67 ZSTR_VAL(method->common.function_name), in phpdbg_print_function_helper()
75 method->common.function_name ? ZSTR_VAL(method->common.function_name) : "{main}", in phpdbg_print_function_helper()
94 if (method->common.scope) { in phpdbg_print_function_helper()
95 …=\"%s::%s\"", "\tInternal %s::%s()", ZSTR_VAL(method->common.scope->name), ZSTR_VAL(method->common in phpdbg_print_function_helper()
97 …", "type=\"Internal\" function=\"%s\"", "\tInternal %s()", ZSTR_VAL(method->common.function_name)); in phpdbg_print_function_helper()
193 ZSTR_VAL(fbc->common.function_name), in PHPDBG_PRINT()
243 (fbc->common.scope) ? "Method" : "Function", in PHPDBG_PRINT()
244 ZSTR_VAL(fbc->common.function_name), in PHPDBG_PRINT()
[all …]
/PHP-8.0/ext/standard/tests/serialize/
H A D__serialize_005.phpt35 $common = new stdClass;
36 $obj = new B([$common], [$common]);
/PHP-8.0/ext/standard/tests/array/
H A Darray_merge_recursive_variation9.phpt2 Test array_merge_recursive() function : usage variations - common key and value(Bug#43559)
7 * arrays having common key and value.
10 echo "*** Testing array_merge_recursive() : arrays with common key and value ***\n";
47 *** Testing array_merge_recursive() : arrays with common key and value ***
/PHP-8.0/ext/pdo/tests/
H A Dpdo_test.inc5 $common = '';
7 foreach(file(dirname($_SERVER['PHP_SELF']).'/common.phpt') as $line) {
9 $common .= $line;
14 $conf = eval($common);
/PHP-8.0/ext/reflection/
H A Dphp_reflection.c435 && ((mptr->common.fn_flags & ZEND_ACC_PRIVATE) == 0 || mptr->common.scope == ce)) in _class_string()
787 …if (fptr->common.scope != overwrites->common.scope && !(overwrites->common.fn_flags & ZEND_ACC_PRI… in _function_string()
794 if (fptr->common.prototype && fptr->common.prototype->common.scope) { in _function_string()
812 if (fptr->common.scope) { in _function_string()
1795 if (fptr->common.scope && !(fptr->common.fn_flags & ZEND_ACC_CLOSURE)) { in ZEND_METHOD()
1802 fptr->common.attributes, 0, fptr->common.scope, target, in ZEND_METHOD()
3190 ZSTR_VAL(mptr->common.scope->name), ZSTR_VAL(mptr->common.function_name)); in reflection_method_invoke()
3198 ZSTR_VAL(mptr->common.scope->name), ZSTR_VAL(mptr->common.function_name), in reflection_method_invoke()
3227 ZSTR_VAL(mptr->common.scope->name), ZSTR_VAL(mptr->common.function_name)); in reflection_method_invoke()
3534 …reflection_method_factory(mptr->common.prototype->common.scope, mptr->common.prototype, NULL, retu… in ZEND_METHOD()
[all …]
/PHP-8.0/ext/zlib/tests/
H A Dreadgzfile_basic.phpt11 is a very common test
30 is a very common test
H A Dreadgzfile_basic2.phpt11 is a very common test
30 is a very common test
H A Dgzfile_basic.phpt11 is a very common test
33 string(22) "is a very common test
H A Dgzfile_basic2.phpt11 is a very common test
33 string(22) "is a very common test
/PHP-8.0/ext/standard/tests/file/windows_acls/
H A Dbug44859_3.phpt5 include_once __DIR__ . '/common.inc';
10 include_once __DIR__ . '/common.inc';
/PHP-8.0/ext/date/tests/
H A Dtimezone_identifiers_list_basic1.phpt14 echo "Check array contains some common timezones\n";
24 Check array contains some common timezones
H A DDateTimeZone_listIdentifiers_basic1.phpt14 echo "Check array contains some common timezones\n";
24 Check array contains some common timezones
/PHP-8.0/Zend/tests/
H A Dbug37212.phpt2 Bug #37212 (Access to protected property of common base class)
26 $this->value = $obj->value; // value defined in common base class
/PHP-8.0/ext/pdo_odbc/tests/
H A Dbug80783.phpt12 $db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
28 $db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
H A Dbug80783a.phpt12 $db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
29 $db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');

Completed in 123 milliseconds

12345678910>>...12