/php-src/Zend/ |
H A D | zend_property_hooks.h | 26 typedef struct _zend_array zend_array; typedef 38 ZEND_API zend_array *zend_hooked_object_build_properties(zend_object *zobj);
|
H A D | zend_property_hooks.c | 44 static zend_array *zho_build_properties_ex(zend_object *zobj, bool check_access, bool force_ptr, bo… in zho_build_properties_ex() 47 zend_array *properties = zend_new_array(ce->default_properties_count); in zho_build_properties_ex() 114 ZEND_API zend_array *zend_hooked_object_build_properties(zend_object *zobj) in zend_hooked_object_build_properties() 119 return (zend_array*) &zend_empty_array; in zend_hooked_object_build_properties() 129 zend_array *properties = zobj->handlers->get_properties(zobj); in zho_dynamic_it_init() 140 zend_array *properties = Z_ARR(hooked_iter->declared_props); in zho_declared_it_fetch_current() 203 zend_array *properties = Z_OBJ(iter->data)->properties; in zho_dynamic_it_fetch_current() 297 zend_array *properties = Z_ARR(hooked_iter->declared_props); in zho_it_move_forward() 303 zend_array *properties = Z_OBJ(iter->data)->properties; in zho_it_move_forward() 319 zend_array *properties = Z_ARR(hooked_iter->declared_props); in zho_it_rewind() [all …]
|
H A D | zend_globals.h | 172 zend_array *symtable_cache[SYMTABLE_CACHE_SIZE]; 174 zend_array **symtable_cache_limit; 176 zend_array **symtable_cache_ptr; 178 zend_array symbol_table; /* main symbol table */
|
H A D | zend_types.h | 97 typedef struct _zend_array zend_array; typedef 320 zend_array *arr; 1116 zend_array *__arr = (a); \ 1124 zend_array *_arr = \ 1125 (zend_array *) malloc(sizeof(zend_array)); \ 1431 ZVAL_ARR(_z1, zend_array_dup((zend_array*)_gc));\ 1526 zend_array *_arr = Z_ARR_P(__zv); \
|
H A D | zend_gc.c | 451 zend_array *arr = (zend_array *) ref; in gc_trace_ref() 936 ZEND_ASSERT((zend_array*)ref != &EG(symbol_table)); in gc_scan_black() 937 ht = (zend_array*)ref; in gc_scan_black() 1111 ZEND_ASSERT(((zend_array*)ref) != &EG(symbol_table)); in gc_mark_grey() 1112 ht = (zend_array*)ref; in gc_mark_grey() 1564 ht = (zend_array*)ref; in gc_collect_white() 1751 ht = (zend_array*)ref; in gc_remove_nested_data_from_buffer() 2056 zend_array *arr = (zend_array*)p; in zend_gc_collect_cycles()
|
H A D | zend_execute.h | 374 ZEND_API void ZEND_FASTCALL zend_free_extra_named_params(zend_array *extra_named_params); 432 ZEND_API void zend_clean_and_cache_symbol_table(zend_array *symbol_table);
|
H A D | zend_API.h | 557 ZEND_API void add_assoc_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr); 586 static zend_always_inline void add_assoc_array(zval *arg, const char *key, zend_array *arr) { in add_assoc_array() 607 ZEND_API void add_index_array(zval *arg, zend_ulong index, zend_array *arr); 624 ZEND_API zend_result add_next_index_array(zval *arg, zend_array *arr); 643 ZEND_API void add_property_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr); 672 static zend_always_inline void add_property_array(zval *arg, const char *key, zend_array *arr) { in add_property_array() 889 ZEND_API zend_array *zend_rebuild_symbol_table(void); 1095 ZEND_API zend_result zend_try_assign_typed_ref_arr(zend_reference *ref, zend_array *arr); 1476 zend_array *arr = zend_new_array(size); in zend_try_array_init_size()
|
H A D | zend_object_handlers.h | 150 typedef zend_array *(*zend_object_get_properties_for_t)(zend_object *object, zend_prop_purpose purp…
|
H A D | zend_execute_API.c | 1797 ZEND_API zend_array *zend_rebuild_symbol_table(void) /* {{{ */ in zend_rebuild_symbol_table() 1800 zend_array *symbol_table; in zend_rebuild_symbol_table() 1932 zend_array *symbol_table = zend_rebuild_symbol_table(); in zend_set_local_var() 1975 zend_array *symbol_table = zend_rebuild_symbol_table(); in zend_set_local_var_str()
|
H A D | zend_compile.h | 620 zend_array *symbol_table; 622 zend_array *extra_named_params;
|
H A D | zend_hash.h | 89 Z_ARR_P(__z) = (zend_array*)&zend_empty_array; \ 371 static zend_always_inline void zend_array_release(zend_array *array) in zend_array_release() 381 static zend_always_inline void zend_hash_release(zend_array *array) in zend_hash_release() 1587 static zend_always_inline bool zend_array_is_list(const zend_array *array) in zend_array_is_list()
|
/php-src/ext/sodium/ |
H A D | sodium_pwhash.c | 31 static inline int get_options(zend_array *options, size_t *memlimit, size_t *opslimit) { in get_options() 62 static zend_string *php_sodium_argon2_hash(const zend_string *password, zend_array *options, int al… in php_sodium_argon2_hash() 95 static bool php_sodium_argon2_needs_rehash(const zend_string *hash, zend_array *options) { in php_sodium_argon2_needs_rehash() 135 static zend_string *php_sodium_argon2i_hash(const zend_string *password, zend_array *options) { in php_sodium_argon2i_hash() 150 static zend_string *php_sodium_argon2id_hash(const zend_string *password, zend_array *options) { in php_sodium_argon2id_hash()
|
/php-src/ext/standard/ |
H A D | php_password.h | 41 zend_string *(*hash)(const zend_string *password, zend_array *options); 43 bool (*needs_rehash)(const zend_string *password, zend_array *options);
|
H A D | password.c | 38 static zend_array php_password_algos; 136 static bool php_password_bcrypt_needs_rehash(const zend_string *hash, zend_array *options) { in php_password_bcrypt_needs_rehash() 177 static zend_string* php_password_bcrypt_hash(const zend_string *password, zend_array *options) { in php_password_bcrypt_hash() 275 static bool php_password_argon2_needs_rehash(const zend_string *hash, zend_array *options) { in php_password_argon2_needs_rehash() 301 static zend_string *php_password_argon2_hash(const zend_string *password, zend_array *options, argo… in php_password_argon2_hash() 387 static zend_string *php_password_argon2i_hash(const zend_string *password, zend_array *options) { in php_password_argon2i_hash() 406 static zend_string *php_password_argon2id_hash(const zend_string *password, zend_array *options) { in php_password_argon2id_hash() 586 zend_array *options = NULL; in PHP_FUNCTION() 635 zend_array *options = NULL; in PHP_FUNCTION()
|
H A D | array.c | 883 zend_array *arr; in php_usort() 1854 static zend_long php_extract_ref_if_exists(zend_array *arr, zend_array *symbol_table) /* {{{ */ 1900 static zend_long php_extract_if_exists(zend_array *arr, zend_array *symbol_table) /* {{{ */ 1944 static zend_long php_extract_ref_overwrite(zend_array *arr, zend_array *symbol_table) /* {{{ */ 1994 static zend_long php_extract_overwrite(zend_array *arr, zend_array *symbol_table) /* {{{ */ 2502 static zend_long php_extract_ref_skip(zend_array *arr, zend_array *symbol_table) /* {{{ */ 2550 static zend_long php_extract_skip(zend_array *arr, zend_array *symbol_table) /* {{{ */ 2598 zend_array *symbol_table; 2740 zend_array *symbol_table; 4409 zend_array *arrval; [all …]
|
H A D | formatted_print.c | 736 static zval *php_formatted_print_get_array(zend_array *array, int *argc) in php_formatted_print_get_array() 783 zend_array *array; in PHP_FUNCTION() 835 zend_array *array; in PHP_FUNCTION() 893 zend_array *array; in PHP_FUNCTION()
|
/php-src/ext/openssl/ |
H A D | openssl_pwhash.c | 49 static inline zend_result get_options(zend_array *options, uint32_t *memlimit, uint32_t *iterlimit,… in get_options() 135 static zend_string *php_openssl_argon2_hash(const zend_string *password, zend_array *options, const… in php_openssl_argon2_hash() 256 static bool php_openssl_argon2_needs_rehash(const zend_string *hash, zend_array *options) in php_openssl_argon2_needs_rehash() 292 static zend_string *php_openssl_argon2i_hash(const zend_string *password, zend_array *options) in php_openssl_argon2i_hash() 306 static zend_string *php_openssl_argon2id_hash(const zend_string *password, zend_array *options) in php_openssl_argon2id_hash() 323 zend_array *options = NULL; in PHP_FUNCTION()
|
/php-src/ext/zend_test/ |
H A D | php_test.h | 42 zend_array *observer_observe_function_names;
|
H A D | observer.c | 310 zend_array **p = (zend_array **) ZEND_INI_GET_ADDR(); in ZEND_INI_MH()
|
H A D | fiber.c | 247 zend_array *named_params; in ZEND_METHOD()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_helpers.c | 461 static void ZEND_FASTCALL zend_jit_fetch_dim_r_helper(zend_array *ht, zval *dim, zval *result) in zend_jit_fetch_dim_r_helper() 603 static void ZEND_FASTCALL zend_jit_fetch_dim_is_helper(zend_array *ht, zval *dim, zval *result) in zend_jit_fetch_dim_is_helper() 745 static int ZEND_FASTCALL zend_jit_fetch_dim_isset_helper(zend_array *ht, zval *dim) in zend_jit_fetch_dim_isset_helper() 849 static zval* ZEND_FASTCALL zend_jit_fetch_dim_rw_helper(zend_array *ht, zval *dim) in zend_jit_fetch_dim_rw_helper() 981 static zval* ZEND_FASTCALL zend_jit_fetch_dim_w_helper(zend_array *ht, zval *dim) in zend_jit_fetch_dim_w_helper() 1508 zend_array *arr = zend_new_array(0); in zend_jit_fetch_dim_obj_helper() 1612 zend_array *arr = zend_new_array(0); in zend_jit_assign_dim_helper() 1697 zend_array *arr = zend_new_array(0); in zend_jit_assign_dim_op_helper() 2695 static zend_array *ZEND_FASTCALL zend_jit_add_arrays_helper(zend_array *op1, zend_array *op2) in zend_jit_add_arrays_helper() 2697 zend_array *res; in zend_jit_add_arrays_helper()
|
/php-src/sapi/phpdbg/ |
H A D | phpdbg_info.c | 178 zend_array *symtable; in phpdbg_print_symbols()
|
/php-src/ext/readline/ |
H A D | readline_cli.c | 446 zend_array *symbol_table = &EG(symbol_table); in cli_completion_generator_var()
|
/php-src/ext/json/ |
H A D | json_encoder.c | 46 zend_array *myht = Z_ARRVAL_P(val); in php_json_determine_array_type()
|
/php-src/docs/source/core/data-structures/ |
H A D | zval.rst | 49 zend_array *arr;
|