Home
last modified time | relevance | path

Searched refs:zend_array (Results 1 – 25 of 32) sorted by relevance

12

/PHP-8.3/ext/sodium/
H A Dsodium_pwhash.c41 static inline int get_options(zend_array *options, size_t *memlimit, size_t *opslimit) { in get_options()
72 static zend_string *php_sodium_argon2_hash(const zend_string *password, zend_array *options, int al… in php_sodium_argon2_hash()
105 static bool php_sodium_argon2_needs_rehash(const zend_string *hash, zend_array *options) { in php_sodium_argon2_needs_rehash()
145 static zend_string *php_sodium_argon2i_hash(const zend_string *password, zend_array *options) { in php_sodium_argon2i_hash()
160 static zend_string *php_sodium_argon2id_hash(const zend_string *password, zend_array *options) { in php_sodium_argon2id_hash()
/PHP-8.3/ext/standard/
H A Dphp_password.h39 zend_string *(*hash)(const zend_string *password, zend_array *options);
41 bool (*needs_rehash)(const zend_string *password, zend_array *options);
H A Dpassword.c37 static zend_array php_password_algos;
135 static bool php_password_bcrypt_needs_rehash(const zend_string *hash, zend_array *options) { in php_password_bcrypt_needs_rehash()
176 static zend_string* php_password_bcrypt_hash(const zend_string *password, zend_array *options) { in php_password_bcrypt_hash()
276 static bool php_password_argon2_needs_rehash(const zend_string *hash, zend_array *options) { in php_password_argon2_needs_rehash()
302 static zend_string *php_password_argon2_hash(const zend_string *password, zend_array *options, argo… in php_password_argon2_hash()
388 static zend_string *php_password_argon2i_hash(const zend_string *password, zend_array *options) { in php_password_argon2i_hash()
407 static zend_string *php_password_argon2id_hash(const zend_string *password, zend_array *options) { in php_password_argon2id_hash()
599 zend_array *options = NULL; in PHP_FUNCTION()
648 zend_array *options = NULL; in PHP_FUNCTION()
H A Darray.c888 zend_array *arr; in php_usort()
1745 static zend_long php_extract_ref_if_exists(zend_array *arr, zend_array *symbol_table) /* {{{ */
1791 static zend_long php_extract_if_exists(zend_array *arr, zend_array *symbol_table) /* {{{ */
1835 static zend_long php_extract_ref_overwrite(zend_array *arr, zend_array *symbol_table) /* {{{ */
1885 static zend_long php_extract_overwrite(zend_array *arr, zend_array *symbol_table) /* {{{ */
2393 static zend_long php_extract_ref_skip(zend_array *arr, zend_array *symbol_table) /* {{{ */
2441 static zend_long php_extract_skip(zend_array *arr, zend_array *symbol_table) /* {{{ */
2489 zend_array *symbol_table;
2631 zend_array *symbol_table;
4287 zend_array *arrval;
[all …]
H A Dformatted_print.c739 static zval *php_formatted_print_get_array(zend_array *array, int *argc) in php_formatted_print_get_array()
786 zend_array *array; in PHP_FUNCTION()
838 zend_array *array; in PHP_FUNCTION()
896 zend_array *array; in PHP_FUNCTION()
/PHP-8.3/Zend/
H A Dzend_globals.h167 zend_array *symtable_cache[SYMTABLE_CACHE_SIZE];
169 zend_array **symtable_cache_limit;
171 zend_array **symtable_cache_ptr;
173 zend_array symbol_table; /* main symbol table */
H A Dzend_gc.c441 zend_array *arr = (zend_array *) ref; in gc_trace_ref()
916 ZEND_ASSERT((zend_array*)ref != &EG(symbol_table)); in gc_scan_black()
917 ht = (zend_array*)ref; in gc_scan_black()
1091 ZEND_ASSERT(((zend_array*)ref) != &EG(symbol_table)); in gc_mark_grey()
1092 ht = (zend_array*)ref; in gc_mark_grey()
1544 ht = (zend_array*)ref; in gc_collect_white()
1731 ht = (zend_array*)ref; in gc_remove_nested_data_from_buffer()
1944 zend_array *arr = (zend_array*)p; in zend_gc_collect_cycles()
H A Dzend_types.h97 typedef struct _zend_array zend_array; typedef
320 zend_array *arr;
1112 zend_array *__arr = (a); \
1120 zend_array *_arr = \
1121 (zend_array *) malloc(sizeof(zend_array)); \
1427 ZVAL_ARR(_z1, zend_array_dup((zend_array*)_gc));\
1522 zend_array *_arr = Z_ARR_P(__zv); \
H A Dzend_object_handlers.h106 typedef zend_array *(*zend_object_get_properties_for_t)(zend_object *object, zend_prop_purpose purp…
H A Dzend_API.h550 ZEND_API void add_assoc_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr);
579 static zend_always_inline void add_assoc_array(zval *arg, const char *key, zend_array *arr) { in add_assoc_array()
600 ZEND_API void add_index_array(zval *arg, zend_ulong index, zend_array *arr);
617 ZEND_API zend_result add_next_index_array(zval *arg, zend_array *arr);
636 ZEND_API void add_property_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr);
665 static zend_always_inline void add_property_array(zval *arg, const char *key, zend_array *arr) { in add_property_array()
882 ZEND_API zend_array *zend_rebuild_symbol_table(void);
1088 ZEND_API zend_result zend_try_assign_typed_ref_arr(zend_reference *ref, zend_array *arr);
1469 zend_array *arr = zend_new_array(size); in zend_try_array_init_size()
H A Dzend_execute.h368 ZEND_API void ZEND_FASTCALL zend_free_extra_named_params(zend_array *extra_named_params);
414 ZEND_API void zend_clean_and_cache_symbol_table(zend_array *symbol_table);
H A Dzend_execute_API.c1755 ZEND_API zend_array *zend_rebuild_symbol_table(void) /* {{{ */ in zend_rebuild_symbol_table()
1758 zend_array *symbol_table; in zend_rebuild_symbol_table()
1890 zend_array *symbol_table = zend_rebuild_symbol_table(); in zend_set_local_var()
1933 zend_array *symbol_table = zend_rebuild_symbol_table(); in zend_set_local_var_str()
H A Dzend_compile.h551 zend_array *symbol_table;
553 zend_array *extra_named_params;
H A Dzend_hash.h87 Z_ARR_P(__z) = (zend_array*)&zend_empty_array; \
360 static zend_always_inline void zend_array_release(zend_array *array) in zend_array_release()
370 static zend_always_inline void zend_hash_release(zend_array *array) in zend_hash_release()
1571 static zend_always_inline bool zend_array_is_list(zend_array *array) in zend_array_is_list()
H A Dzend_API.c1877 ZEND_API void add_assoc_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr) /* {{… in add_assoc_array_ex()
1982 ZEND_API void add_index_array(zval *arg, zend_ulong index, zend_array *arr) /* {{{ */ in add_index_array()
2081 ZEND_API zend_result add_next_index_array(zval *arg, zend_array *arr) /* {{{ */ in add_next_index_array()
2225 ZEND_API void add_property_array_ex(zval *arg, const char *key, size_t key_len, zend_array *arr) /*… in add_property_array_ex()
4542 ZEND_API zend_result zend_try_assign_typed_ref_arr(zend_reference *ref, zend_array *arr) /* {{{ */ in zend_try_assign_typed_ref_arr()
/PHP-8.3/ext/zend_test/
H A Dphp_test.h42 zend_array *observer_observe_function_names;
H A Dobserver.c304 zend_array **p = (zend_array **) ZEND_INI_GET_ADDR(); in ZEND_INI_MH()
H A Dfiber.c246 zend_array *named_params; in ZEND_METHOD()
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_helpers.c367 static void ZEND_FASTCALL zend_jit_fetch_dim_r_helper(zend_array *ht, zval *dim, zval *result) in zend_jit_fetch_dim_r_helper()
509 static void ZEND_FASTCALL zend_jit_fetch_dim_is_helper(zend_array *ht, zval *dim, zval *result) in zend_jit_fetch_dim_is_helper()
651 static int ZEND_FASTCALL zend_jit_fetch_dim_isset_helper(zend_array *ht, zval *dim) in zend_jit_fetch_dim_isset_helper()
755 static zval* ZEND_FASTCALL zend_jit_fetch_dim_rw_helper(zend_array *ht, zval *dim) in zend_jit_fetch_dim_rw_helper()
887 static zval* ZEND_FASTCALL zend_jit_fetch_dim_w_helper(zend_array *ht, zval *dim) in zend_jit_fetch_dim_w_helper()
1421 zend_array *arr = zend_new_array(0); in zend_jit_fetch_dim_obj_helper()
1525 zend_array *arr = zend_new_array(0); in zend_jit_assign_dim_helper()
1610 zend_array *arr = zend_new_array(0); in zend_jit_assign_dim_op_helper()
2521 static zend_array *ZEND_FASTCALL zend_jit_add_arrays_helper(zend_array *op1, zend_array *op2) in zend_jit_add_arrays_helper()
2523 zend_array *res; in zend_jit_add_arrays_helper()
H A Dzend_jit_x86.dasc3525 | test dword [FCARG1a + offsetof(zend_array, u.flags)], HASH_FLAG_PACKED
3528 | test dword [FCARG1a + offsetof(zend_array, u.flags)], HASH_FLAG_PACKED
5686 | mov eax, dword [FCARG1a + offsetof(zend_array, nNumUsed)]
5696 | cmp dword [FCARG1a + offsetof(zend_array, nNumUsed)], val
5698 | cmp dword [FCARG1a + offsetof(zend_array, nNumUsed)], FCARG2a
5720 | mov r0, aword [FCARG1a + offsetof(zend_array, arPacked)]
5731 | add r0, aword [FCARG1a + offsetof(zend_array, arPacked)]
15445 | add FCARG2a, aword [FCARG1a + offsetof(zend_array, arData)]
15448 | cmp dword [FCARG1a + offsetof(zend_array, nNumUsed)], eax
15481 | add FCARG2a, aword [FCARG1a + offsetof(zend_array, arPacked)]
[all …]
/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_info.c178 zend_array *symtable; in phpdbg_print_symbols()
/PHP-8.3/ext/json/
H A Djson_encoder.c36 zend_array *myht = Z_ARRVAL_P(val); in php_json_determine_array_type()
/PHP-8.3/ext/readline/
H A Dreadline_cli.c453 zend_array *symbol_table = &EG(symbol_table); in cli_completion_generator_var()
/PHP-8.3/ext/opcache/
H A Dzend_persist_calc.c116 size = zend_shared_memdup_size(Z_ARR_P(z), sizeof(zend_array)); in zend_persist_zval_calc()
H A Dzend_persist.c225 ht = zend_shared_memdup_put(Z_ARR_P(z), sizeof(zend_array)); in zend_persist_zval()
228 ht = zend_shared_memdup_put_free(Z_ARR_P(z), sizeof(zend_array)); in zend_persist_zval()

Completed in 160 milliseconds

12