Home
last modified time | relevance | path

Searched defs:hash (Results 1 – 25 of 45) sorted by relevance

12

/php-src/ext/dom/lexbor/lexbor/tag/
H A Dtag.c13 lxb_tag_append(lexbor_hash_t *hash, lxb_tag_id_t tag_id, in lxb_tag_append()
41 lxb_tag_append_lower(lexbor_hash_t *hash, const lxb_char_t *name, size_t length) in lxb_tag_append_lower()
63 lxb_tag_data_by_id(lexbor_hash_t *hash, lxb_tag_id_t tag_id) in lxb_tag_data_by_id()
77 lxb_tag_data_by_name(lexbor_hash_t *hash, const lxb_char_t *name, size_t len) in lxb_tag_data_by_name()
124 lxb_tag_name_by_id_noi(lexbor_hash_t *hash, lxb_tag_id_t tag_id, size_t *len) in lxb_tag_name_by_id_noi()
130 lxb_tag_name_upper_by_id_noi(lexbor_hash_t *hash, in lxb_tag_name_upper_by_id_noi()
137 lxb_tag_id_by_name_noi(lexbor_hash_t *hash, const lxb_char_t *name, size_t len) in lxb_tag_id_by_name_noi()
143 lxb_tag_mraw_noi(lexbor_hash_t *hash) in lxb_tag_mraw_noi()
H A Dtag.h45 lxb_tag_name_by_id(lexbor_hash_t *hash, lxb_tag_id_t tag_id, size_t *len) in lxb_tag_name_by_id()
64 lxb_tag_name_upper_by_id(lexbor_hash_t *hash, lxb_tag_id_t tag_id, size_t *len) in lxb_tag_name_upper_by_id()
83 lxb_tag_id_by_name(lexbor_hash_t *hash, const lxb_char_t *name, size_t len) in lxb_tag_id_by_name()
94 lxb_tag_mraw(lexbor_hash_t *hash) in lxb_tag_mraw()
/php-src/ext/dom/lexbor/lexbor/core/
H A Dhash.c73 lexbor_hash_table_create(lexbor_hash_t *hash) in lexbor_hash_table_create()
79 lexbor_hash_table_clean(lexbor_hash_t *hash) in lexbor_hash_table_clean()
85 lexbor_hash_table_destroy(lexbor_hash_t *hash) in lexbor_hash_table_destroy()
120 lexbor_hash_init(lexbor_hash_t *hash, size_t table_size, size_t struct_size) in lexbor_hash_init()
160 lexbor_hash_clean(lexbor_hash_t *hash) in lexbor_hash_clean()
168 lexbor_hash_destroy(lexbor_hash_t *hash, bool destroy_obj) in lexbor_hash_destroy()
282 lexbor_hash_remove_by_hash_id(lexbor_hash_t *hash, uint32_t hash_id, in lexbor_hash_remove_by_hash_id()
320 lexbor_hash_search_by_hash_id(lexbor_hash_t *hash, uint32_t hash_id, in lexbor_hash_search_by_hash_id()
400 lexbor_hash_copy(lexbor_hash_t *hash, lexbor_hash_entry_t *entry, in lexbor_hash_copy()
425 lexbor_hash_copy_lower(lexbor_hash_t *hash, lexbor_hash_entry_t *entry, in lexbor_hash_copy_lower()
[all …]
H A Dhash.h77 lexbor_hash_id_f hash; /* For generate a hash id. */ member
83 lexbor_hash_id_f hash; /* For generate a hash id. */ member
155 lexbor_hash_mraw(const lexbor_hash_t *hash) in lexbor_hash_mraw()
186 lexbor_hash_entry_str_free(lexbor_hash_t *hash, lexbor_hash_entry_t *entry) in lexbor_hash_entry_str_free()
196 lexbor_hash_entry_create(lexbor_hash_t *hash) in lexbor_hash_entry_create()
202 lexbor_hash_entry_destroy(lexbor_hash_t *hash, lexbor_hash_entry_t *entry) in lexbor_hash_entry_destroy()
208 lexbor_hash_entries_count(lexbor_hash_t *hash) in lexbor_hash_entries_count()
H A Dutils.c30 size_t hash, i; in lexbor_utils_hash_hash() local
/php-src/ext/dom/lexbor/lexbor/ns/
H A Dns.c17 lxb_ns_append(lexbor_hash_t *hash, const lxb_char_t *link, size_t length) in lxb_ns_append()
43 lxb_ns_by_id(lexbor_hash_t *hash, lxb_ns_id_t ns_id, size_t *length) in lxb_ns_by_id()
64 lxb_ns_data_by_id(lexbor_hash_t *hash, lxb_ns_id_t ns_id) in lxb_ns_data_by_id()
78 lxb_ns_data_by_link(lexbor_hash_t *hash, const lxb_char_t *link, size_t length) in lxb_ns_data_by_link()
97 lxb_ns_prefix_append(lexbor_hash_t *hash, in lxb_ns_prefix_append()
124 lxb_ns_prefix_data_by_id(lexbor_hash_t *hash, lxb_ns_prefix_id_t prefix_id) in lxb_ns_prefix_data_by_id()
138 lxb_ns_prefix_data_by_name(lexbor_hash_t *hash, in lxb_ns_prefix_data_by_name()
/php-src/ext/standard/
H A Dpassword.c116 static bool php_password_bcrypt_valid(const zend_string *hash) { in php_password_bcrypt_valid()
122 static int php_password_bcrypt_get_info(zval *return_value, const zend_string *hash) { in php_password_bcrypt_get_info()
136 static bool php_password_bcrypt_needs_rehash(const zend_string *hash, zend_array *options) { in php_password_bcrypt_needs_rehash()
180 zend_string *result, *hash, *salt; in php_password_bcrypt_hash() local
206 ZSTR_VAL(hash)[hash_format_len + ZSTR_LEN(salt)] = 0; in php_password_bcrypt_hash() local
239 static int extract_argon2_parameters(const zend_string *hash, in extract_argon2_parameters()
262 static int php_password_argon2_get_info(zval *return_value, const zend_string *hash) { in php_password_argon2_get_info()
512 zend_string *php_password_algo_extract_ident(const zend_string* hash) { in php_password_algo_extract_ident()
547 zend_string *hash, *ident; in PHP_FUNCTION() local
584 zend_string *hash; in PHP_FUNCTION() local
[all …]
H A Dphp_password.h39 zend_string *(*hash)(const zend_string *password, zend_array *options); member
59 static inline const php_password_algo* php_password_algo_identify(const zend_string *hash) { in php_password_algo_identify()
H A Dcrypt_freesec.c739 const char *hash; member
787 char *hash = crypt(tests[i].pw, tests[i].hash); in main() local
/php-src/ext/hash/
H A Dhash.c423 PHP_FUNCTION(hash) in PHP_FUNCTION() argument
619 php_hashcontext_object *hash; in PHP_FUNCTION() local
682 #define PHP_HASHCONTEXT_VERIFY(hash) { \ argument
693 php_hashcontext_object *hash; in PHP_FUNCTION() local
712 php_hashcontext_object *hash; in PHP_FUNCTION() local
749 php_hashcontext_object *hash; in PHP_FUNCTION() local
783 php_hashcontext_object *hash; in PHP_FUNCTION() local
1376 php_hashcontext_object *hash = php_hashcontext_from_object(obj); in php_hashcontext_dtor() local
1565 PHP_MINIT_FUNCTION(hash) in PHP_MINIT_FUNCTION() argument
1653 PHP_MSHUTDOWN_FUNCTION(hash) in PHP_MSHUTDOWN_FUNCTION() argument
[all …]
H A Dhash_sha3.c203 static int php_sha3_unserialize(php_hashcontext_object *hash, in php_sha3_unserialize()
295 static int php_keccak_serialize(const php_hashcontext_object *hash, zend_long *magic, zval *zv) in php_keccak_serialize()
301 static int php_keccak_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_keccak_unserialize()
H A Dhash_xxhash.c76 php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_hash_xxh32_unserialize()
220 php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_hash_xxh64_unserialize()
H A Dhash.stub.php12 function hash(string $algo, string $data, bool $binary = false, array $options = []): string {} function
H A Dhash_whirlpool.c432 static int php_whirlpool_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_whirlpool_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()
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dattr.c358 lxb_dom_attr_local_name_append(lexbor_hash_t *hash, in lxb_dom_attr_local_name_append()
385 lxb_dom_attr_qualified_name_append(lexbor_hash_t *hash, const lxb_char_t *name, in lxb_dom_attr_qualified_name_append()
411 lxb_dom_attr_data_by_id(lexbor_hash_t *hash, lxb_dom_attr_id_t attr_id) in lxb_dom_attr_data_by_id()
425 lxb_dom_attr_data_by_local_name(lexbor_hash_t *hash, in lxb_dom_attr_data_by_local_name()
444 lxb_dom_attr_data_by_qualified_name(lexbor_hash_t *hash, in lxb_dom_attr_data_by_qualified_name()
/php-src/ext/sodium/
H A Dsodium_pwhash.c88 static bool php_sodium_argon2_verify(const zend_string *password, const zend_string *hash) { in php_sodium_argon2_verify()
95 static bool php_sodium_argon2_needs_rehash(const zend_string *hash, zend_array *options) { in php_sodium_argon2_needs_rehash()
104 static int php_sodium_argon2_get_info(zval *return_value, const zend_string *hash) { in php_sodium_argon2_get_info()
H A Dlibsodium.stub.php549 function sodium_crypto_aead_aes256gcm_decrypt(string $ciphertext, string $additional_data, string $… argument
/php-src/ext/intl/collator/
H A Dcollator_convert.c36 HashTable* hash, zval *hashData, zend_string *hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf8_to_utf16()
77 HashTable* hash, zval * hashData, zend_string* hashKey, zend_ulong hashIndex, in collator_convert_hash_item_from_utf16_to_utf8()
115 void collator_convert_hash_from_utf8_to_utf16( HashTable* hash, UErrorCode* status ) in collator_convert_hash_from_utf8_to_utf16()
134 void collator_convert_hash_from_utf16_to_utf8( HashTable* hash, UErrorCode* status ) in collator_convert_hash_from_utf16_to_utf8()
H A Dcollator_sort.c261 HashTable* hash = NULL; in collator_sort_internal() local
331 HashTable* hash = NULL; in PHP_FUNCTION() local
/php-src/ext/dom/lexbor/lexbor/encoding/
H A Dencode.c142 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_big5() local
181 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_euc_jp() local
239 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_euc_kr() local
272 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_gbk() local
332 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_iso_2022_jp() local
679 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_shift_jis() local
905 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_gb18030() local
1112 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_big5_single() local
1146 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_euc_jp_single() local
1197 const lexbor_shs_hash_t *hash; in lxb_encoding_encode_euc_kr_single() local
[all …]
/php-src/sapi/phpdbg/
H A Dphpdbg_bp.h103 zend_ulong hash; member
114 zend_ulong hash; member
H A Dphpdbg_bp.c787 zend_ulong hash = zend_hash_func(name, name_len); in phpdbg_set_breakpoint_opcode() local
826 … *brake, const phpdbg_param_t *param, const char *expr, size_t expr_len, zend_ulong hash) /* {{{ */ in phpdbg_create_conditional_break()
919 zend_ulong hash = 0L; in phpdbg_set_breakpoint_at() local
/php-src/Zend/Optimizer/
H A Dcompact_literals.c90 static uint32_t add_static_slot(HashTable *hash, in add_static_slot()
165 HashTable hash; in zend_optimizer_compact_literals() local
/php-src/ext/dba/libcdb/
H A Dcdb_make.h45 struct cdb_hp *hash; member

Completed in 123 milliseconds

12