Home
last modified time | relevance | path

Searched defs:zv (Results 1 – 25 of 146) sorted by path

123456

/PHP-7.4/Zend/
H A Dzend.c571 static void auto_global_dtor(zval *zv) /* {{{ */ in auto_global_dtor()
578 static void function_copy_ctor(zval *zv) /* {{{ */ in function_copy_ctor()
617 static void auto_global_copy_ctor(zval *zv) /* {{{ */ in auto_global_copy_ctor()
764 static void module_destructor_zval(zval *zv) /* {{{ */ in module_destructor_zval()
H A Dzend_API.c1871 static int zend_startup_module_zval(zval *zv) /* {{{ */ in zend_startup_module_zval()
2659 zval *zv; in zend_post_deactivate_modules() local
2770 zval zv, *ret; in zend_register_class_alias_ex() local
3023 zval *zv; in zend_is_callable_check_func() local
3685 static inline zend_string *zval_make_interned_string(zval *zv) /* {{{ */ in zval_make_interned_string()
3917 ZEND_API int zend_try_assign_typed_ref_zval(zend_reference *ref, zval *zv) /* {{{ */ in zend_try_assign_typed_ref_zval()
3926 ZEND_API int zend_try_assign_typed_ref_zval_ex(zend_reference *ref, zval *zv, zend_bool strict) /* … in zend_try_assign_typed_ref_zval_ex()
H A Dzend_API.h710 #define ZEND_TRY_ASSIGN_NULL(zv) \ argument
732 #define ZEND_TRY_ASSIGN_FALSE(zv) \ argument
754 #define ZEND_TRY_ASSIGN_TRUE(zv) \ argument
776 #define ZEND_TRY_ASSIGN_BOOL(zv, bval) \ argument
798 #define ZEND_TRY_ASSIGN_LONG(zv, lval) \ argument
820 #define ZEND_TRY_ASSIGN_DOUBLE(zv, dval) \ argument
842 #define ZEND_TRY_ASSIGN_EMPTY_STRING(zv) \ argument
864 #define ZEND_TRY_ASSIGN_STR(zv, str) \ argument
886 #define ZEND_TRY_ASSIGN_NEW_STR(zv, str) \ argument
952 #define ZEND_TRY_ASSIGN_ARR(zv, arr) \ argument
[all …]
H A Dzend_ast.c74 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_ex(zval *zv, zend_ast_attr attr) { in zend_ast_create_zval_ex()
78 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval(zval *zv) { in zend_ast_create_zval()
83 zval zv; in zend_ast_create_zval_from_str() local
89 zval zv; in zend_ast_create_zval_from_long() local
521 zval *zv = zend_ast_get_zval(ast); in zend_ast_evaluate() local
529 zval *zv = zend_get_constant_ex(name, scope, ast->attr); in zend_ast_evaluate() local
997 zval *zv = zend_ast_get_zval(ast); in zend_ast_export_name() local
1010 zval *zv = zend_ast_get_zval(ast); in zend_ast_export_ns_name() local
1072 zval *zv = zend_ast_get_zval(ast); in zend_ast_export_var() local
1108 zval *zv = zend_ast_get_zval(ast); in zend_ast_export_encaps_list() local
[all …]
H A Dzend_ast.h302 zval *zv = zend_ast_get_zval(ast); in zend_ast_get_str() local
319 zval *zv = zend_ast_get_zval(ast); in zend_ast_get_lineno() local
H A Dzend_builtin_functions.c755 zval *zv = zend_hash_find_ex(EG(ini_directives), ZSTR_KNOWN(ZEND_STR_ERROR_REPORTING), 1); in ZEND_FUNCTION() local
H A Dzend_compile.c503 static int zend_add_literal(zval *zv) /* {{{ */ in zend_add_literal()
522 zval zv; in zend_add_literal_string() local
964 static void str_dtor(zval *zv) /* {{{ */ { in str_dtor()
1044 zval *rtd_key, *zv; in do_bind_function() local
1070 zval *rtd_key, *zv; in do_bind_class() local
1628 zval zv; in zendlex() local
1736 zval *zv = zend_ast_get_zval(ast); in zend_negate_num_string() local
1748 Z_STRVAL_P(zv)[0] = '-'; in zend_negate_num_string() local
2338 zval *zv = zend_ast_get_zval(name_ast); in zend_try_compile_cv() local
5691 zval zv; in zend_compile_closure_uses() local
[all …]
H A Dzend_compile.h74 zval *zv; member
H A Dzend_constants.c32 #define IS_CONSTANT_VISITED(zv) (Z_ACCESS_FLAGS_P(zv) & IS_CONSTANT_VISITED_MARK) argument
33 #define MARK_CONSTANT_VISITED(zv) Z_ACCESS_FLAGS_P(zv) |= IS_CONSTANT_VISITED_MARK argument
34 #define RESET_CONSTANT_VISITED(zv) Z_ACCESS_FLAGS_P(zv) &= ~IS_CONSTANT_VISITED_MARK argument
36 void free_zend_constant(zval *zv) in free_zend_constant()
57 static void copy_zend_constant(zval *zv) in copy_zend_constant()
275 zval *zv; in zend_get_constant_impl() local
H A Dzend_exceptions.c76 zval pv, zv, rv; in zend_exception_set_previous() local
1018 zval zv; in zend_exception_error() local
H A Dzend_execute.c3110 …id zend_throw_ref_type_error_type(zend_property_info *prop1, zend_property_info *prop2, zval *zv) { in zend_throw_ref_type_error_type()
3125 ZEND_API ZEND_COLD void zend_throw_ref_type_error_zval(zend_property_info *prop, zval *zv) { in zend_throw_ref_type_error_zval()
3136 …_throw_conflicting_coercion_error(zend_property_info *prop1, zend_property_info *prop2, zval *zv) { in zend_throw_conflicting_coercion_error()
3153 zend_type *type_ptr, zend_class_entry *self_ce, zval *zv, zend_bool strict) { in i_zend_verify_type_assignable_zval()
3204 ZEND_API zend_bool ZEND_FASTCALL zend_verify_ref_assignable_zval(zend_reference *ref, zval *zv, zen… in zend_verify_ref_assignable_zval()
3651 zval *zv = zend_hash_find(EG(function_table), name); in zend_fetch_function() local
3666 zval *zv = zend_hash_str_find(EG(function_table), name, len); in zend_fetch_function_str() local
4416 zval *zv; in _zend_quick_get_constant() local
H A Dzend_execute_API.c103 static int clean_non_persistent_constant_full(zval *zv) /* {{{ */ in clean_non_persistent_constant_full()
110 static int clean_non_persistent_function_full(zval *zv) /* {{{ */ in clean_non_persistent_function_full()
117 static int clean_non_persistent_class_full(zval *zv) /* {{{ */ in clean_non_persistent_class_full()
195 static int zval_call_destructor(zval *zv) /* {{{ */ in zval_call_destructor()
208 static void zend_unclean_zval_ptr_dtor(zval *zv) /* {{{ */ in zend_unclean_zval_ptr_dtor()
258 zval *zv; in shutdown_executor() local
606 zval *zv = zend_get_constant_ex(name, scope, ast->attr); in zval_update_constant_ex() local
897 zval args[1], *zv; in zend_lookup_class_ex() local
1529 zval *zv = zend_hash_find_ex(ht, *str, 1); in zend_attach_symbol_table() local
H A Dzend_gc.c695 zval *zv; in gc_scan_black() local
704 zval *zv, *end; in gc_scan_black() local
813 zval *zv; in gc_mark_grey() local
824 zval *zv, *end; in gc_mark_grey() local
988 zval *zv; in gc_scan() local
1010 zval *zv, *end; in gc_scan() local
1159 zval *zv; in gc_collect_white() local
1173 zval *zv, *end; in gc_collect_white() local
1331 zval *zv; in gc_remove_nested_data_from_buffer() local
1359 zval *zv, *end; in gc_remove_nested_data_from_buffer() local
H A Dzend_gc.h75 zval *zv = &((zend_reference*)ref)->val; local
H A Dzend_generators.c376 zval *zv = EX_VAR_NUM(op_array->last_var + op_array->T); in zend_generator_get_gc() local
1150 zval *zv = &root->key; in zend_generator_iterator_get_key() local
H A Dzend_hash.c2732 zval *zv; in zend_symtable_to_proptable() local
2785 zval *zv; in zend_proptable_to_symtable() local
H A Dzend_hash.h361 zval *zv; in zend_hash_find_ind() local
371 zval *zv; in zend_hash_find_ex_ind() local
381 zval *zv; in zend_hash_exists_ind() local
391 zval *zv; in zend_hash_str_find_ind() local
401 zval *zv; in zend_hash_str_exists_ind() local
588 zval tmp, *zv; in zend_hash_add_ptr() local
811 zval *zv; in zend_hash_find_ptr() local
824 zval *zv; in zend_hash_find_ex_ptr() local
837 zval *zv; in zend_hash_str_find_ptr() local
850 zval *zv; in zend_hash_index_find_ptr() local
[all …]
H A Dzend_inheritance.c38 static void overridden_ptr_dtor(zval *zv) /* {{{ */ in overridden_ptr_dtor()
633 zval *zv = RT_CONSTANT(precv, precv->op2); in zend_get_function_declaration() local
1056 zval *zv = zend_hash_find_ex(&ce->constants_table, name, 1); in do_inherit_class_constant() local
1352 zval *zv = zend_hash_find_ex(child_constants_table, name, 1); in do_inherit_constant_check() local
2258 static void variance_obligation_dtor(zval *zv) { in variance_obligation_dtor()
2262 static void variance_obligation_ht_dtor(zval *zv) { in variance_obligation_ht_dtor()
2330 static int check_variance_obligation(zval *zv) { in check_variance_obligation()
2544 zval *zv = zend_hash_find_ex(&ce->function_table, key, 1); in zend_can_early_bind() local
2561 zval *zv; in zend_can_early_bind() local
H A Dzend_ini.c74 static void free_ini_entry(zval *zv) /* {{{ */ in free_ini_entry()
143 static void copy_ini_entry(zval *zv) /* {{{ */ in copy_ini_entry()
H A Dzend_ini_parser.y281 static void zval_ini_dtor(zval *zv) in zval_ini_dtor()
H A Dzend_language_parser.y291 zval zv; variable
769 …{ zval zv; zend_lex_tstring(&zv); $$ = zend_ast_create(ZEND_AST_TRAIT_ALIAS, $1, zend_ast_create_z… variable
1067 { zval zv; ZVAL_INTERNED_STR(&zv, ZSTR_KNOWN(ZEND_STR_STATIC)); variable
H A Dzend_language_scanner.l301 ZEND_API void zend_lex_tstring(zval *zv) in zend_lex_tstring()
H A Dzend_list.c35 zval zv; in zend_list_insert() local
96 zval *zv; in zend_register_resource() local
181 void list_entry_destructor(zval *zv) in list_entry_destructor()
192 void plist_entry_destructor(zval *zv) in plist_entry_destructor()
242 static int clean_module_resource(zval *zv, void *arg) in clean_module_resource()
250 static int zend_clean_module_rsrc_dtors_cb(zval *zv, void *arg) in zend_clean_module_rsrc_dtors_cb()
272 zval zv; in zend_register_list_destructors_ex() local
301 static void list_destructors_dtor(zval *zv) in list_destructors_dtor()
334 zval *zv; in zend_register_persistent_resource_ex() local
H A Dzend_object_handlers.c90 zval zv; in rebuild_object_properties() local
352 zval *zv; in zend_get_parent_private_property() local
383 zval *zv; in zend_get_property_offset() local
489 zval *zv; in zend_get_property_info() local
614 zval *zv; in zend_get_property_guard() local
H A Dzend_opcode.c125 ZEND_API void zend_function_dtor(zval *zv) in zend_function_dtor()
243 ZEND_API void destroy_zend_class(zval *zv) in destroy_zend_class()
411 void zend_class_add_ref(zval *zv) in zend_class_add_ref()
1016 zval *zv; in pass_two() local

Completed in 161 milliseconds

123456