Home
last modified time | relevance | path

Searched refs:IS_UNDEF (Results 1 – 25 of 82) sorted by path

1234

/php-src/Zend/
H A Dzend.c563 if (zobj->ce->enum_backing_type != IS_UNDEF) { in zend_print_zval_r_to_buf()
1456 if (Z_TYPE(EG(user_error_handler)) == IS_UNDEF in zend_error_zstr_at()
1514 if (Z_TYPE(retval) != IS_UNDEF) { in zend_error_zstr_at()
1535 if (Z_TYPE(EG(user_error_handler)) == IS_UNDEF) { in zend_error_zstr_at()
1881 if (Z_TYPE(EG(user_exception_handler)) == IS_UNDEF) { in zend_user_exception_handler()
1902 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { in zend_execute_script()
H A Dzend_API.c1630 …_USER_CLASS && class_type->ce_flags & ZEND_ACC_ENUM && class_type->enum_backing_type != IS_UNDEF) { in zend_update_class_constants()
4364 if (!retval_ptr && Z_TYPE(retval) != IS_UNDEF) { in zend_fcall_info_call()
H A Dzend_ast.c451 if (Z_TYPE_P(offset) == IS_UNDEF) { in zend_ast_add_array_element()
H A Dzend_builtin_functions.c261 if (EXPECTED(Z_TYPE_INFO_P(q) != IS_UNDEF)) { in ZEND_FUNCTION()
278 if (EXPECTED(Z_TYPE_INFO_P(q) != IS_UNDEF)) { in ZEND_FUNCTION()
1223 if (Z_TYPE(EG(user_error_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1245 if (Z_TYPE(EG(user_error_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1279 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1299 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { in ZEND_FUNCTION()
1584 if (Z_TYPE(modules[module_number]) == IS_UNDEF) { in ZEND_FUNCTION()
1674 if (EXPECTED(Z_TYPE_INFO_P(p) != IS_UNDEF)) { in debug_backtrace_get_args()
1714 if (EXPECTED(Z_TYPE_INFO_P(p) != IS_UNDEF)) { in debug_backtrace_get_args()
1849 if (Z_TYPE_P(arg) == IS_UNDEF) goto not_frameless_call; in zend_fetch_debug_backtrace()
[all …]
H A Dzend_closures.c212 if (Z_TYPE(closure_result) != IS_UNDEF) { in ZEND_METHOD()
532 if (Z_TYPE(closure->this_ptr) != IS_UNDEF) { in zend_closure_free_storage()
569 if (Z_TYPE(closure->this_ptr) != IS_UNDEF) { in zend_closure_get_closure()
642 if (Z_TYPE(closure->this_ptr) != IS_UNDEF) { in zend_closure_get_debug_info()
740 if ((scope == NULL) && this_ptr && (Z_TYPE_P(this_ptr) != IS_UNDEF)) { in zend_create_closure_ex()
H A Dzend_compile.c261 {NULL, 0, IS_UNDEF}
2018 ce->enum_backing_type = IS_UNDEF; in zend_initialize_class_data()
5861 uint8_t common_type = IS_UNDEF; in determine_switch_jumptable_type()
5874 return IS_UNDEF; in determine_switch_jumptable_type()
5880 return IS_UNDEF; in determine_switch_jumptable_type()
5883 if (common_type == IS_UNDEF) { in determine_switch_jumptable_type()
5887 return IS_UNDEF; in determine_switch_jumptable_type()
5893 return IS_UNDEF; in determine_switch_jumptable_type()
5937 if (jumptable_type != IS_UNDEF && should_use_jumptable(cases, jumptable_type)) { in zend_compile_switch()
8528 if (enum_class->enum_backing_type != IS_UNDEF && case_value_ast == NULL) { in zend_compile_enum_case()
[all …]
H A Dzend_compile.h898 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { \
H A Dzend_enum.c69 ce->enum_backing_type != IS_UNDEF in zend_verify_enum_properties()
149 if (class_type->enum_backing_type == IS_UNDEF) { in zend_implement_backed_enum()
177 if (ce->enum_backing_type != IS_UNDEF) { in zend_enum_add_interfaces()
188 if (ce->enum_backing_type != IS_UNDEF) { in zend_enum_add_interfaces()
202 ZEND_ASSERT(backing_type != IS_UNDEF); in zend_enum_build_backed_enum_table()
444 if (ce->enum_backing_type != IS_UNDEF) { in zend_enum_register_funcs()
476 if (ce->enum_backing_type != IS_UNDEF) { in zend_enum_register_props()
499 ZEND_ASSERT(type == IS_UNDEF || type == IS_LONG || type == IS_STRING); in zend_register_internal_enum()
507 if (type != IS_UNDEF) { in zend_register_internal_enum()
514 if (type == IS_UNDEF) { in zend_register_internal_enum()
[all …]
H A Dzend_enum.h58 ZEND_ASSERT(zobj->ce->enum_backing_type != IS_UNDEF); in zend_enum_fetch_case_value()
H A Dzend_exceptions.c203 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF in zend_throw_exception_internal()
H A Dzend_execute.c319 if (UNEXPECTED(Z_TYPE_P(ret) == IS_UNDEF)) { in _get_zval_ptr_cv()
333 if (UNEXPECTED(Z_TYPE_P(ret) == IS_UNDEF)) { in _get_zval_ptr_cv_deref()
349 if (UNEXPECTED(Z_TYPE_P(ret) == IS_UNDEF)) { in _get_zval_ptr_cv_BP_VAR_R()
389 if (Z_TYPE_P(ret) == IS_UNDEF) { in _get_zval_ptr_cv_BP_VAR_W()
1662 case IS_UNDEF: in zend_check_string_offset()
2338 case IS_UNDEF: { in slow_index_convert()
2406 case IS_UNDEF: { in slow_index_convert_w()
2774 case IS_UNDEF: in zend_fetch_dimension_address_read()
3062 if (Z_TYPE_P(key) == IS_UNDEF) { in zend_array_key_exists_error()
3065 if (Z_TYPE_P(subject) == IS_UNDEF) { in zend_array_key_exists_error()
[all …]
H A Dzend_execute_API.c378 if (Z_TYPE(EG(user_error_handler)) != IS_UNDEF) { in zend_shutdown_executor_values()
383 if (Z_TYPE(EG(user_exception_handler)) != IS_UNDEF) { in zend_shutdown_executor_values()
1333 if (Z_TYPE(local_retval) != IS_UNDEF) { in zend_eval_stringl()
1861 if (Z_TYPE_P(var) == IS_UNDEF) { in zend_detach_symbol_table()
H A Dzend_fibers.c803 …fiber->context.status != ZEND_FIBER_STATUS_INIT || Z_TYPE(fiber->fci.function_name) != IS_UNDEF)) { in ZEND_METHOD()
H A Dzend_generators.c230 if (UNEXPECTED(Z_TYPE(generator->values) != IS_UNDEF)) { in zend_generator_dtor_storage()
477 if (UNEXPECTED(Z_TYPE(generator->values) != IS_UNDEF)) { in zend_generator_throw_exception()
829 …if (UNEXPECTED(Z_TYPE(generator->value) == IS_UNDEF) && EXPECTED(generator->execute_data) && EXPEC… in zend_generator_ensure_initialized()
888 if (EXPECTED(generator->execute_data != NULL && Z_TYPE(root->value) != IS_UNDEF)) { in ZEND_METHOD()
906 if (EXPECTED(generator->execute_data != NULL && Z_TYPE(root->key) != IS_UNDEF)) { in ZEND_METHOD()
1090 if (EXPECTED(Z_TYPE(root->key) != IS_UNDEF)) { in zend_generator_iterator_get_key()
H A Dzend_hash.c847 if (Z_TYPE_P(data) != IS_UNDEF) { in _zend_hash_add_or_update_i()
926 if (Z_TYPE_P(data) != IS_UNDEF) { in _zend_hash_str_add_or_update_i()
1096 if (Z_TYPE_P(zv) != IS_UNDEF) { in _zend_hash_index_add_or_update_i()
1700 if (Z_TYPE_P(zv) != IS_UNDEF) { in zend_hash_index_del()
2570 if (UNEXPECTED(Z_TYPE_P(s) == IS_UNDEF)) { in zend_hash_merge()
2606 if (UNEXPECTED(Z_TYPE_P(s) == IS_UNDEF)) { in zend_hash_merge()
2703 if (Z_TYPE_P(zv) != IS_UNDEF) { in zend_hash_index_find()
3084 if (Z_TYPE_P(pData1) == IS_UNDEF) continue; in zend_hash_compare_impl()
3146 if (Z_TYPE_P(pData1) == IS_UNDEF) { in zend_hash_compare_impl()
3147 if (Z_TYPE_P(pData2) != IS_UNDEF) { in zend_hash_compare_impl()
[all …]
H A Dzend_hash.h200 if (UNEXPECTED(Z_TYPE_P(_ret) == IS_UNDEF)) { \
223 if (EXPECTED(Z_TYPE_P(_ret) != IS_UNDEF)) { \
441 Z_TYPE_P(Z_INDIRECT_P(zv)) != IS_UNDEF); in zend_hash_exists_ind()
461 Z_TYPE_P(Z_INDIRECT_P(zv)) != IS_UNDEF); in zend_hash_str_exists_ind()
1006 if (UNEXPECTED(Z_TYPE_P(_z) == IS_UNDEF)) continue;
1015 if (UNEXPECTED(Z_TYPE_P(_z) == IS_UNDEF)) continue;
1041 if (UNEXPECTED(Z_TYPE_P(_z) == IS_UNDEF)) continue;
1070 if (UNEXPECTED(Z_TYPE_P(_z) == IS_UNDEF)) continue;
1244 if (UNEXPECTED(Z_TYPE_P(_z) == IS_UNDEF)) continue;
1260 if (UNEXPECTED(Z_TYPE_P(_z) == IS_UNDEF)) continue;
[all …]
H A Dzend_highlight.c120 if (Z_TYPE(token) == IS_UNDEF) { in zend_highlight()
H A Dzend_interfaces.c410 if (Z_TYPE(retval) == IS_UNDEF || EG(exception)) { in zend_user_serialize()
H A Dzend_language_scanner.l3117 ZEND_ASSERT(Z_TYPE_P(zendlval) != IS_UNDEF);
H A Dzend_list.c222 if (Z_TYPE_P(p) != IS_UNDEF) { in zend_close_rsrc_list()
H A Dzend_object_handlers.c110 if (UNEXPECTED(Z_TYPE_P(prop) == IS_UNDEF)) { in zend_std_build_object_properties_array()
586 ZEND_ASSERT(Z_TYPE_P(zv) == IS_UNDEF); in zend_get_property_guard()
623 if (EXPECTED(Z_TYPE_P(retval) != IS_UNDEF)) { in zend_std_read_property()
728 if (Z_TYPE_P(rv) != IS_UNDEF) { in zend_std_read_property()
820 if (Z_TYPE_P(variable_ptr) != IS_UNDEF) { in zend_std_write_property()
1024 if (UNEXPECTED(Z_TYPE_P(rv) == IS_UNDEF)) { in zend_std_read_dimension()
1185 if (Z_TYPE_P(slot) != IS_UNDEF) { in zend_std_unset_property()
1775 if (Z_TYPE_P(p1) != IS_UNDEF) { in zend_std_compare_objects()
1776 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
1789 if (Z_TYPE_P(p2) != IS_UNDEF) { in zend_std_compare_objects()
[all …]
H A Dzend_operators.c732 case IS_UNDEF: in _convert_to_string()
907 case IS_UNDEF: in zval_get_long_func()
1016 case IS_UNDEF: in __zval_get_string_func()
H A Dzend_smart_str.c197 case IS_UNDEF: in smart_str_append_scalar()
H A Dzend_type_info.h24 #define MAY_BE_UNDEF (1 << IS_UNDEF)
H A Dzend_types.h599 #define IS_UNDEF 0 macro
952 #define Z_ISUNDEF(zval) (Z_TYPE(zval) == IS_UNDEF)
1042 Z_TYPE_INFO_P(z) = IS_UNDEF; \

Completed in 206 milliseconds

1234