Home
last modified time | relevance | path

Searched refs:EXPECTED (Results 1 – 25 of 72) sorted by relevance

123

/PHP-8.0/Zend/
H A Dzend_vm_execute.h9872 if (EXPECTED(0)) { in ZEND_SEND_VAL_EX_SPEC_CONST_UNUSED_HANDLER()
9909 if (EXPECTED(1)) { in ZEND_SEND_VAL_EX_SPEC_CONST_UNUSED_QUICK_HANDLER()
20221 if (EXPECTED(0)) { in ZEND_SEND_VAL_EX_SPEC_TMP_UNUSED_HANDLER()
20258 if (EXPECTED(1)) { in ZEND_SEND_VAL_EX_SPEC_TMP_UNUSED_QUICK_HANDLER()
28193 if (EXPECTED(0)) { in ZEND_SEND_VAR_NO_REF_EX_SPEC_VAR_UNUSED_HANDLER()
28261 if (EXPECTED(1)) { in ZEND_SEND_VAR_NO_REF_EX_SPEC_VAR_UNUSED_QUICK_HANDLER()
28359 if (EXPECTED(0)) { in ZEND_SEND_VAR_EX_SPEC_VAR_UNUSED_HANDLER()
28425 if (EXPECTED(1)) { in ZEND_SEND_VAR_EX_SPEC_VAR_UNUSED_QUICK_HANDLER()
32962 if (EXPECTED(c != NULL) && EXPECTED(!IS_SPECIAL_CACHE_VAL(c))) { in ZEND_FETCH_CONSTANT_SPEC_UNUSED_CONST_HANDLER()
35289 if (EXPECTED(0)) { in ZEND_CHECK_FUNC_ARG_SPEC_UNUSED_UNUSED_HANDLER()
[all …]
H A Dzend_object_handlers.c510 if (EXPECTED(str == member) || in zend_get_property_guard()
581 (EXPECTED(p->key == name) || in zend_std_read_property()
583 EXPECTED(p->key != NULL) && in zend_std_read_property()
592 if (EXPECTED(retval)) { in zend_std_read_property()
929 if (EXPECTED(!zobj->ce->__get) || in zend_std_get_property_ptr_ptr()
950 if (EXPECTED(zobj->properties)) { in zend_std_get_property_ptr_ptr()
961 if (EXPECTED(!zobj->ce->__get) || in zend_std_get_property_ptr_ptr()
1201 if (EXPECTED(key != NULL)) { in zend_std_get_method()
1232 if (EXPECTED(updated_fbc != NULL)) { in zend_std_get_method()
1276 if (EXPECTED(key != NULL)) { in zend_std_get_static_method()
[all …]
H A Dzend_objects.c51 if (EXPECTED(!(GC_FLAGS(object->properties) & IS_ARRAY_IMMUTABLE))) { in zend_object_std_dtor()
52 if (EXPECTED(GC_DELREF(object->properties) == 0) in zend_object_std_dtor()
53 && EXPECTED(GC_TYPE(object->properties) != IS_NULL)) { in zend_object_std_dtor()
59 if (EXPECTED(object->ce->default_properties_count)) { in zend_object_std_dtor()
77 if (EXPECTED(Z_TYPE_P(p) == IS_STRING)) { in zend_object_std_dtor()
208 if (EXPECTED(old_object->handlers == &std_object_handlers)) { in zend_objects_clone_members()
209 if (EXPECTED(!(GC_FLAGS(old_object->properties) & IS_ARRAY_IMMUTABLE))) { in zend_objects_clone_members()
218 EXPECTED(zend_hash_num_elements(old_object->properties))) { in zend_objects_clone_members()
240 if (EXPECTED(key)) { in zend_objects_clone_members()
H A Dzend_vm_def.h2097 if (EXPECTED(retval)) {
2249 if (EXPECTED(retval)) {
4411 if (EXPECTED(return_value)) {
5297 if (EXPECTED(!must_wrap)) { in ZEND_HASH_FOREACH_VAL()
5350 if (EXPECTED(!must_wrap)) { in ZEND_HASH_FOREACH_STR_KEY_VAL()
5813 if (EXPECTED(c != NULL) && EXPECTED(!IS_SPECIAL_CACHE_VAL(c))) {
5863 if (EXPECTED(zv != NULL)) {
7670 if (EXPECTED(ce)) {
8368 if (EXPECTED(!strict)) {
8432 if (EXPECTED(c != NULL)) {
[all …]
H A Dzend_operators.h276 if (EXPECTED(Z_TYPE_P(op) == IS_STRING)) { in zval_get_tmp_string()
291 if (EXPECTED(Z_TYPE_P(op) == IS_STRING)) { in zval_try_get_string()
302 if (EXPECTED(Z_TYPE_P(op) == IS_STRING)) { in zval_try_get_tmp_string()
376 if (EXPECTED(Z_RES_HANDLE_P(op))) { in i_zend_is_true()
732 if (EXPECTED(Z_TYPE_P(op1) == IS_LONG)) { in fast_add_function()
733 if (EXPECTED(Z_TYPE_P(op2) == IS_LONG)) { in fast_add_function()
741 if (EXPECTED(Z_TYPE_P(op2) == IS_DOUBLE)) { in fast_add_function()
852 if (EXPECTED(Z_TYPE_P(op1) == IS_LONG)) { in fast_equal_check_function()
853 if (EXPECTED(Z_TYPE_P(op2) == IS_LONG)) { in fast_equal_check_function()
874 if (EXPECTED(Z_TYPE_P(op2) == IS_LONG)) { in fast_equal_check_long()
[all …]
H A Dzend_vm_trace_handlers.h35 if (EXPECTED(last)) { in zend_vm_trace()
41 if (EXPECTED(zv)) { in zend_vm_trace()
42 if (EXPECTED(Z_LVAL_P(zv) < ZEND_LONG_MAX)) { in zend_vm_trace()
H A Dzend_operators.c319 if (EXPECTED(type == IS_LONG)) { in zendi_try_get_long()
814 } else if (EXPECTED(type == IS_LONG)) { in zval_get_long_func()
1307 if (EXPECTED(retval == SUCCESS)) { in div_function()
1499 if (EXPECTED(Z_TYPE_P(op1) == IS_LONG) && EXPECTED(Z_TYPE_P(op2) == IS_LONG)) { in bitwise_or_function()
1581 if (EXPECTED(Z_TYPE_P(op1) == IS_LONG) && EXPECTED(Z_TYPE_P(op2) == IS_LONG)) { in bitwise_and_function()
1663 if (EXPECTED(Z_TYPE_P(op1) == IS_LONG) && EXPECTED(Z_TYPE_P(op2) == IS_LONG)) { in bitwise_xor_function()
1749 if (EXPECTED(op2_lval > 0)) { in shift_left_function()
1786 if (EXPECTED(op2_lval > 0)) { in shift_right_function()
1866 if (EXPECTED(result != op2)) { in concat_function()
1873 if (EXPECTED(result != op1)) { in concat_function()
[all …]
H A Dzend_execute.c2887 if (EXPECTED(ptr)) { in zend_fetch_property_address()
3045 if (EXPECTED(op1_type == IS_CONST) && EXPECTED(CACHED_PTR(cache_slot) == ce)) { in zend_fetch_static_property_address_ex()
3306 if (EXPECTED(ret)) { in zend_assign_to_typed_ref()
3519 while (EXPECTED(count != 0)) { in i_free_compiled_variables()
3598 if (EXPECTED(delta != 0)) { in zend_copy_extra_args()
3622 if (EXPECTED(first < last)) { in zend_init_cvs()
3692 if (EXPECTED(zv != NULL)) { in zend_fetch_function()
3707 if (EXPECTED(zv != NULL)) { in zend_fetch_function_str()
3949 if (EXPECTED(num_args > 0)) { in zend_unfinished_calls_gc()
4229 if (EXPECTED(!EG(exception))) { in zend_init_dynamic_call_string()
[all …]
H A Dzend_generators.h113 if (EXPECTED(generator->node.parent == NULL)) { in zend_generator_get_current()
123 if (EXPECTED(root->execute_data)) { in zend_generator_get_current()
H A Dzend_signal.h79 # define ZEND_SIGNAL_BLOCK_INTERRUPTIONS() if (EXPECTED(zend_signal_globals_id)) { SIGG(depth)++; }
80 # define ZEND_SIGNAL_UNBLOCK_INTERRUPTIONS() if (EXPECTED(zend_signal_globals_id) && UNEXPECTED(((…
H A Dzend_API.h695 if (EXPECTED(!Z_ISREF_P(__zv))) { \
1176 if (EXPECTED(Z_ISREF_P(zv))) { in zend_try_array_init_size()
1341 if (EXPECTED(Z_ISREF_P(_arg))) { \
1808 if (EXPECTED(_num_varargs > 0)) { \
1828 if (EXPECTED(_num_varargs > 0)) { \
1891 if (EXPECTED(Z_TYPE_P(arg) == IS_TRUE)) { in zend_parse_arg_bool()
1909 if (EXPECTED(Z_TYPE_P(arg) == IS_LONG)) { in zend_parse_arg_long()
2005 if (EXPECTED(zend_is_iterable(arg))) { in zend_parse_arg_iterable()
2020 if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY) || in zend_parse_arg_array()
2033 if (EXPECTED(Z_TYPE_P(arg) == IS_ARRAY)) { in zend_parse_arg_array_ht()
[all …]
H A Dzend_variables.c126 if (EXPECTED(Z_TYPE_P(zvalue) == IS_ARRAY)) { in zval_copy_ctor_func()
128 } else if (EXPECTED(Z_TYPE_P(zvalue) == IS_STRING)) { in zval_copy_ctor_func()
H A Dzend_hash.c520 if (EXPECTED(iter->ht) && EXPECTED(iter->ht != HT_POISONED_PTR) in zend_hash_iterator_pos()
540 if (EXPECTED(iter->ht) && EXPECTED(iter->ht != HT_POISONED_PTR) in zend_hash_iterator_pos_ex()
561 if (EXPECTED(iter->ht) && EXPECTED(iter->ht != HT_POISONED_PTR) in zend_hash_iterator_del()
665 EXPECTED(p->key) && in zend_hash_find_bucket()
1578 if (EXPECTED(p->key)) { in zend_hash_destroy()
1586 if (EXPECTED(p->key)) { in zend_hash_destroy()
1641 if (EXPECTED(p->key)) { in zend_array_destroy()
1649 if (EXPECTED(p->key)) { in zend_array_destroy()
1691 if (EXPECTED(p->key)) { in zend_hash_clean()
1751 if (EXPECTED(p->key)) { in zend_symtable_clean()
[all …]
H A Dzend_gc.c328 if (EXPECTED(idx < GC_MAX_UNCOMPRESSED)) { in gc_compress()
338 if (EXPECTED(GC_GET_PTR(root->ref) == ref)) { in gc_decompress()
603 } else if (EXPECTED(GC_HAS_NEXT_UNUSED())) { in gc_possible_root_when_full()
637 if (EXPECTED(GC_HAS_UNUSED())) { in gc_possible_root()
702 if (EXPECTED(!(OBJ_FLAGS(ref) & IS_OBJ_FREE_CALLED))) { in gc_scan_black()
730 if (EXPECTED(!ht)) { in gc_scan_black()
851 if (EXPECTED(!ht)) { in gc_mark_grey()
1037 if (EXPECTED(!ht)) { in gc_scan()
1211 if (EXPECTED(!ht)) { in gc_collect_white()
1366 if (EXPECTED(!ht)) { in gc_remove_nested_data_from_buffer()
[all …]
H A Dzend_generators.c135 if (EXPECTED(generator->execute_data)) { in zend_generator_close()
242 if (EXPECTED(!ex) || EXPECTED(!(ex->func->op_array.fn_flags & ZEND_ACC_HAS_FINALLY_BLOCK)) in zend_generator_dtor_storage()
315 if (EXPECTED(!Z_ISUNDEF(generator->retval))) { in zend_generator_free_storage()
585 …if (EXPECTED(EG(exception) == NULL) && EXPECTED((OBJ_FLAGS(&generator->std) & IS_OBJ_DESTRUCTOR_CA… in zend_generator_update_current()
755 if (EXPECTED(zend_generator_get_next_delegated_value(generator) == SUCCESS)) { in zend_generator_resume()
787 if (EXPECTED(generator->execute_data) && in zend_generator_resume()
830 … (UNEXPECTED(Z_TYPE(generator->value) == IS_UNDEF) && EXPECTED(generator->execute_data) && EXPECTE… in zend_generator_ensure_initialized()
873 RETURN_BOOL(EXPECTED(generator->execute_data != NULL)); in ZEND_METHOD()
909 if (EXPECTED(generator->execute_data != NULL && Z_TYPE(root->key) != IS_UNDEF)) { in ZEND_METHOD()
960 if (EXPECTED(generator->execute_data)) { in ZEND_METHOD()
[all …]
H A Dzend_execute.h136 if (EXPECTED(!Z_REFCOUNTED_P(variable_ptr))) { in zend_assign_to_variable()
224 if (EXPECTED(ZEND_USER_CODE(func->type))) { in zend_vm_calc_used_stack()
259 if (EXPECTED(num_args > 0)) { in zend_vm_stack_free_args()
300 if (EXPECTED((uint32_t)(EG(vm_stack_end) - EG(vm_stack_top)) > additional_args)) { in zend_vm_stack_extend_call_frame()
371 (EXPECTED(((void**)((char*)EX(run_time_cache) + (num)))[0] == (void*)(ce)) ? \
389 (EXPECTED((slot)[0] == (ce)) ? (slot)[1] : NULL)
H A Dzend_inheritance.c148 if (EXPECTED(!ce->__get)) { in do_inherit_parent_constructor()
151 if (EXPECTED(!ce->__set)) { in do_inherit_parent_constructor()
154 if (EXPECTED(!ce->__unset)) { in do_inherit_parent_constructor()
157 if (EXPECTED(!ce->__isset)) { in do_inherit_parent_constructor()
160 if (EXPECTED(!ce->__call)) { in do_inherit_parent_constructor()
166 if (EXPECTED(!ce->__tostring)) { in do_inherit_parent_constructor()
169 if (EXPECTED(!ce->clone)) { in do_inherit_parent_constructor()
172 if (EXPECTED(!ce->__serialize)) { in do_inherit_parent_constructor()
178 if (EXPECTED(!ce->serialize)) { in do_inherit_parent_constructor()
181 if (EXPECTED(!ce->unserialize)) { in do_inherit_parent_constructor()
[all …]
H A Dzend_gc.h71 if (EXPECTED(GC_TYPE_INFO(ref) == GC_REFERENCE)) { in gc_check_possible_root()
H A Dzend_signal.c96 if (EXPECTED(SIGG(active))) { in zend_signal_handler_defer()
101 if (EXPECTED(SIGG(running) == 0)) { in zend_signal_handler_defer()
156 if (EXPECTED(SIGG(active))) { in zend_signal_handler_unblock()
H A Dzend_string.h219 if (EXPECTED(GC_REFCOUNT(s) == 1)) { in zend_string_realloc()
240 if (EXPECTED(GC_REFCOUNT(s) == 1)) { in zend_string_extend()
261 if (EXPECTED(GC_REFCOUNT(s) == 1)) { in zend_string_truncate()
H A Dzend_vm_execute.skl43 if (EXPECTED(!object_or_called_scope)) {
H A Dzend_execute_API.c797 if (EXPECTED(!must_wrap)) { in zend_call_function()
851 if (EXPECTED(!must_wrap)) { in zend_call_function()
909 if (EXPECTED(zend_execute_internal == NULL)) { in zend_call_function()
1589 if (EXPECTED(ex->func->op_array.last_var)) { in zend_rebuild_symbol_table()
1611 if (EXPECTED(op_array->last_var)) { in zend_attach_symbol_table()
1645 if (EXPECTED(op_array->last_var)) { in zend_detach_symbol_table()
1677 if (EXPECTED(op_array->last_var)) { in zend_set_local_var()
1719 if (EXPECTED(op_array->last_var)) { in zend_set_local_var_str()
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_helpers.c149 if (EXPECTED(!EG(exception))) { in zend_jit_find_method_helper()
970 if (EXPECTED(offset < 0)) { in zend_jit_fetch_dim_str_offset()
974 if (EXPECTED(real_offset >= 0)) { in zend_jit_fetch_dim_str_offset()
1470 if (EXPECTED(!EG(exception))) { in zend_jit_assign_dim_helper()
1480 } else if (EXPECTED(Z_TYPE_P(object_ptr) == IS_STRING) && EXPECTED(dim != NULL)) { in zend_jit_assign_dim_helper()
1679 EXPECTED(p->key != NULL) && in zend_jit_fetch_global_helper()
1744 if (EXPECTED(*cache_slot)) { in zend_jit_verify_type_common()
1832 (EXPECTED(p->key == name) || in zend_jit_fetch_obj_r_dynamic()
1846 if (EXPECTED(retval)) { in zend_jit_fetch_obj_r_dynamic()
1890 (EXPECTED(p->key == name) || in zend_jit_fetch_obj_is_dynamic()
[all …]
/PHP-8.0/ext/opcache/
H A Dzend_accelerator_util_funcs.c105 if (EXPECTED(function->type == ZEND_USER_FUNCTION) in zend_accel_move_user_functions()
106 && EXPECTED(function->op_array.filename == filename)) { in zend_accel_move_user_functions()
136 if (EXPECTED(ce->type == ZEND_USER_CLASS) in zend_accel_move_user_classes()
137 && EXPECTED(ce->info.user.filename == filename)) { in zend_accel_move_user_classes()
441 if (EXPECTED(ZSTR_LEN(p->key) > 0) && EXPECTED(ZSTR_VAL(p->key)[0] == 0)) { in zend_accel_function_hash_copy()
493 if (EXPECTED(ZSTR_LEN(p->key) > 0) && EXPECTED(ZSTR_VAL(p->key)[0] == 0)) { in zend_accel_function_hash_copy_from_shm()
536 if (EXPECTED(ZSTR_LEN(p->key) > 0) && EXPECTED(ZSTR_VAL(p->key)[0] == 0)) { in zend_accel_class_hash_copy()
573 if (EXPECTED(ZSTR_LEN(p->key) > 0) && EXPECTED(ZSTR_VAL(p->key)[0] == 0)) { in zend_accel_class_hash_copy_from_shm()
758 if (EXPECTED(from_shared_memory)) { in zend_accel_load_script()
763 if (EXPECTED(persistent_script->arena_size)) { in zend_accel_load_script()
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_sigsafe.c11 if (EXPECTED(size <= PHPDBG_SIGSAFE_MEM_SIZE && !PHPDBG_G(sigsafe_mem).allocated)) { in ZEND_EXTERN_MODULE_GLOBALS()

Completed in 350 milliseconds

123