Home
last modified time | relevance | path

Searched refs:zv (Results 126 – 150 of 207) sorted by relevance

123456789

/PHP-8.1/ext/soap/
H A Dsoap.c144 #define Z_PARAM_NAME_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 0)) argument
145 #define Z_PARAM_DATA_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 1)) argument
147 #define Z_HEADER_NAMESPACE_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 0)) argument
148 #define Z_HEADER_NAME_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 1)) argument
149 #define Z_HEADER_DATA_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 2)) argument
150 #define Z_HEADER_MUST_UNDERSTAND_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 3)) argument
151 #define Z_HEADER_ACTOR_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 4)) argument
153 #define Z_SERVER_SERVICE_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 0)) argument
154 #define Z_SERVER_SOAP_FAULT_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 1)) argument
159 #define Z_FAULT_CODE_P(zv) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), FAULT_PROP_START_OFFSET + 1)) argument
[all …]
/PHP-8.1/ext/hash/
H A Dhash_snefru.c192 static int php_snefru_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_snefru_unserialize() argument
197 && (r = php_hash_unserialize_spec(hash, zv, PHP_SNEFRU_SPEC)) == SUCCESS in php_snefru_unserialize()
H A Dhash_tiger.c242 static int php_tiger_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_tiger_unserialize() argument
247 && (r = php_hash_unserialize_spec(hash, zv, PHP_TIGER_SPEC)) == SUCCESS in php_tiger_unserialize()
H A Dhash_whirlpool.c432 static int php_whirlpool_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_whirlpool_unserialize() argument
437 && (r = php_hash_unserialize_spec(hash, zv, PHP_WHIRLPOOL_SPEC)) == SUCCESS in php_whirlpool_unserialize()
H A Dhash_gost.c307 static int php_gost_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_gost_unserialize() argument
312 && (r = php_hash_unserialize_spec(hash, zv, PHP_GOST_SPEC)) == SUCCESS in php_gost_unserialize()
/PHP-8.1/win32/
H A Dregistry.c171 static void delete_internal_hashtable(zval *zv) in delete_internal_hashtable() argument
173 HashTable *ht = (HashTable *)Z_PTR_P(zv); in delete_internal_hashtable()
/PHP-8.1/Zend/
H A Dzend.c623 static void auto_global_dtor(zval *zv) /* {{{ */ in auto_global_dtor() argument
625 free(Z_PTR_P(zv)); in auto_global_dtor()
630 static void function_copy_ctor(zval *zv) /* {{{ */ in function_copy_ctor() argument
632 zend_function *old_func = Z_FUNC_P(zv); in function_copy_ctor()
640 Z_FUNC_P(zv) = func; in function_copy_ctor()
693 static void auto_global_copy_ctor(zval *zv) /* {{{ */ in auto_global_copy_ctor() argument
695 zend_auto_global *old_ag = (zend_auto_global *) Z_PTR_P(zv); in auto_global_copy_ctor()
702 Z_PTR_P(zv) = new_ag; in auto_global_copy_ctor()
856 static void module_destructor_zval(zval *zv) /* {{{ */ in module_destructor_zval() argument
858 zend_module_entry *module = (zend_module_entry*)Z_PTR_P(zv); in module_destructor_zval()
H A Dzend_language_parser.y321 zval zv; variable
322 if (zend_lex_tstring(&zv, $1) == FAILURE) { YYABORT; }
323 $$ = zend_ast_create_zval(&zv);
962 { zval zv; variable
963 if (zend_lex_tstring(&zv, $3) == FAILURE) { YYABORT; }
964 $$ = zend_ast_create(ZEND_AST_TRAIT_ALIAS, $1, zend_ast_create_zval(&zv)); }
1271 { zval zv; ZVAL_INTERNED_STR(&zv, ZSTR_KNOWN(ZEND_STR_STATIC)); variable
1272 $$ = zend_ast_create_zval_ex(&zv, ZEND_NAME_NOT_FQ); }
H A Dzend_builtin_functions.c385 zval *zv = zend_hash_find_known_hash(EG(ini_directives), ZSTR_KNOWN(ZEND_STR_ERROR_REPORTING)); in ZEND_FUNCTION() local
386 if (!zv) { in ZEND_FUNCTION()
391 p = EG(error_reporting_ini_entry) = (zend_ini_entry*)Z_PTR_P(zv); in ZEND_FUNCTION()
1243 zval *zv; in get_declared_class_impl() local
1251 ZEND_HASH_FOREACH_STR_KEY_VAL(EG(class_table), key, zv) { in get_declared_class_impl()
1252 ce = Z_PTR_P(zv); in get_declared_class_impl()
1257 if (EXPECTED(Z_TYPE_P(zv) == IS_PTR)) { in get_declared_class_impl()
1260 ZEND_ASSERT(Z_TYPE_P(zv) == IS_ALIAS_PTR); in get_declared_class_impl()
H A Dzend_execute.h67 ZEND_API bool ZEND_FASTCALL zend_verify_ref_assignable_zval(zend_reference *ref, zval *zv, bool str…
70 ZEND_API ZEND_COLD void zend_throw_ref_type_error_zval(zend_property_info *prop, zval *zv);
71 …oid zend_throw_ref_type_error_type(zend_property_info *prop1, zend_property_info *prop2, zval *zv);
H A Dzend_constants.h72 void free_zend_constant(zval *zv);
H A Dzend_string.c61 static void _str_dtor(zval *zv) in _str_dtor() argument
63 zend_string *str = Z_STR_P(zv); in _str_dtor()
H A Dzend_API.c2212 zend_module_entry *module = Z_PTR_P(zv); in zend_startup_module_zval()
3062 zval *zv; in zend_post_deactivate_modules() local
3071 module = Z_PTR_P(zv); in zend_post_deactivate_modules()
3189 zval zv, *ret; in zend_register_class_alias_ex() local
3208 ZVAL_ALIAS_PTR(&zv, ce); in zend_register_class_alias_ex()
3468 zval *zv; in zend_is_callable_check_func() local
3578 fcc->function_handler = Z_PTR_P(zv); in zend_is_callable_check_func()
3587 if (zv != NULL) { in zend_is_callable_check_func()
3588 zend_function *priv_fbc = Z_PTR_P(zv); in zend_is_callable_check_func()
4332 ZVAL_COPY_VALUE(&tmp, zv); in zend_try_assign_typed_ref_zval()
[all …]
/PHP-8.1/ext/phar/
H A Dphar.c26 static void destroy_phar_data(zval *zv);
37 phar_archive_data *phar = (phar_archive_data *)Z_PTR_P(zv); in phar_set_writeable_bit()
285 static void destroy_phar_data_only(zval *zv) /* {{{ */ in destroy_phar_data_only() argument
307 static int phar_tmpclose_apply(zval *zv) /* {{{ */ in phar_tmpclose_apply() argument
309 phar_entry_info *entry = (phar_entry_info *) Z_PTR_P(zv); in phar_tmpclose_apply()
327 static void destroy_phar_data(zval *zv) /* {{{ */ in destroy_phar_data() argument
335 destroy_phar_data_only(zv); in destroy_phar_data()
379 void destroy_phar_manifest_entry(zval *zv) /* {{{ */ in destroy_phar_manifest_entry() argument
381 phar_entry_info *entry = Z_PTR_P(zv); in destroy_phar_manifest_entry()
3381 static void mime_type_dtor(zval *zv) in mime_type_dtor() argument
[all …]
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg.c480 zval zv; in phpdbg_add_empty_array() local
481 array_init(&zv); in phpdbg_add_empty_array()
482 ht_zv = zend_hash_add_new(ht, name, &zv); in phpdbg_add_empty_array()
1520 zval *zv = zend_hash_str_find(php_stream_get_url_stream_wrappers_hash(), ZEND_STRL("php")); in main() local
1521 php_stream_wrapper *tmp_wrapper = Z_PTR_P(zv); in main()
1527 Z_PTR_P(zv) = &wrapper; in main()
1769 zval *zv = zend_hash_str_find(php_stream_get_url_stream_wrappers_hash(), ZEND_STRL("php")); in main() local
1770 Z_PTR_P(zv) = (void*)PHPDBG_G(orig_url_wrap_php); in main()
/PHP-8.1/ext/sysvmsg/
H A Dsysvmsg.c82 #define Z_SYSVMSG_QUEUE_P(zv) sysvmsg_queue_from_obj(Z_OBJ_P(zv)) argument
/PHP-8.1/ext/sysvshm/
H A Dsysvshm.c43 #define Z_SYSVSHM_P(zv) sysvshm_from_obj(Z_OBJ_P(zv)) argument
/PHP-8.1/ext/fileinfo/
H A Dfileinfo.c57 #define Z_FINFO_P(zv) php_finfo_fetch_object(Z_OBJ_P((zv))) argument
/PHP-8.1/ext/sockets/
H A Dsendrecvmsg.c402 zval *zv = to_zval_run_conversions(buffer, reader, "in6_pktinfo", in php_do_getsockopt_ipv6_rfc3542() local
408 ZVAL_COPY_VALUE(result, zv); in php_do_getsockopt_ipv6_rfc3542()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_arm64.dasc812 | ldr reg, [zv]
1382 | ldr tmp_reg, [zv]
1384 | str tmp_reg, [zv]
1388 | ldr tmp_reg, [zv]
1390 | str tmp_reg, [zv]
1394 | ldr tmp_reg, [zv]
1396 | str tmp_reg, [zv]
13851 zval *zv;
13892 zval *zv;
13928 zval *zv;
[all …]
H A Dzend_jit_internal.h127 #define ZEND_ADDR_CONST_ZVAL(zv) \ argument
128 (((zend_jit_addr)(uintptr_t)(zv)) | IS_CONST_ZVAL)
164 return ZEND_ADDR_CONST_ZVAL(op.zv); in _zend_jit_decode_op()
/PHP-8.1/ext/opcache/
H A DZendAccelerator.c3495 zval *zv; local
3500 zend_constant *c = Z_PTR_P(zv);
3510 zend_function *func = Z_PTR_P(zv);
3887 zval *zv; local
3901 ce = Z_PTR_P(zv);
3921 zv = zend_hash_set_bucket_key(EG(class_table), (Bucket*)zv, lcname);
3923 if (EXPECTED(zv)) {
3962 zv = zend_hash_set_bucket_key(EG(class_table), (Bucket*)zv, key);
3963 Z_CE_P(zv) = orig_ce;
3988 ce = Z_PTR_P(zv);
[all …]
/PHP-8.1/Zend/Optimizer/
H A Dzend_inference.c2457 zval *zv = CRT_CONSTANT(opline->op2); in zend_fetch_static_prop_info() local
3294 if (Z_TYPE_P(zv) == IS_STRING) { in _zend_update_type_info()
4132 if (Z_TYPE_P(zv) == IS_LONG || Z_TYPE_P(zv) == IS_DOUBLE) { in can_convert_to_double()
4133 ZVAL_COPY_VALUE(&orig_op1, zv); in can_convert_to_double()
4134 ZVAL_COPY_VALUE(&dval_op1, zv); in can_convert_to_double()
4145 if (Z_TYPE_P(zv) == IS_LONG || Z_TYPE_P(zv) == IS_DOUBLE) { in can_convert_to_double()
4146 ZVAL_COPY_VALUE(&orig_op2, zv); in can_convert_to_double()
4147 ZVAL_COPY_VALUE(&dval_op2, zv); in can_convert_to_double()
4411 if (Z_TYPE_P(zv) == IS_NULL) { in zend_func_return_info()
4460 tmp_range.min = Z_LVAL_P(zv); in zend_func_return_info()
[all …]
/PHP-8.1/ext/standard/
H A Duser_filters.c366 static void filter_item_dtor(zval *zv) in filter_item_dtor() argument
368 struct php_user_filter_data *fdat = Z_PTR_P(zv); in filter_item_dtor()
H A Dformatted_print.c741 zval *args, *zv; in php_formatted_print_get_array() local
747 ZEND_HASH_FOREACH_VAL(array, zv) { in php_formatted_print_get_array()
748 ZVAL_COPY_VALUE(&args[n], zv); in php_formatted_print_get_array()

Completed in 206 milliseconds

123456789