Searched refs:php_hashcontext_object (Results 1 – 9 of 9) sorted by relevance
/PHP-8.1/ext/hash/ |
H A D | php_hash.h | 32 typedef struct _php_hashcontext_object php_hashcontext_object; typedef 38 typedef int (*php_hash_serialize_func_t)(const php_hashcontext_object *hash, zend_long *magic, zva… 39 typedef int (*php_hash_unserialize_func_t)(php_hashcontext_object *hash, zend_long magic, const zv… 67 static inline php_hashcontext_object *php_hashcontext_from_object(zend_object *obj) { in php_hashcontext_from_object() 68 return ((php_hashcontext_object*)(obj + 1)) - 1; in php_hashcontext_from_object() 151 PHP_HASH_API int php_hash_serialize(const php_hashcontext_object *context, zend_long *magic, zval *… 152 PHP_HASH_API int php_hash_unserialize(php_hashcontext_object *context, zend_long magic, const zval … 153 PHP_HASH_API int php_hash_serialize_spec(const php_hashcontext_object *context, zval *zv, const cha… 154 PHP_HASH_API int php_hash_unserialize_spec(php_hashcontext_object *hash, const zval *zv, const char…
|
H A D | hash_xxhash.c | 21 php_hashcontext_object *hash, zend_long magic, const zval *zv); 23 php_hashcontext_object *hash, zend_long magic, const zval *zv); 76 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 D | hash.c | 618 php_hashcontext_object *hash; in PHP_FUNCTION() 692 php_hashcontext_object *hash; in PHP_FUNCTION() 711 php_hashcontext_object *hash; in PHP_FUNCTION() 748 php_hashcontext_object *hash; in PHP_FUNCTION() 782 php_hashcontext_object *hash; in PHP_FUNCTION() 840 php_hashcontext_object *context; in PHP_FUNCTION() 1373 php_hashcontext_object *objval = zend_object_alloc(sizeof(php_hashcontext_object), ce); in php_hashcontext_create() 1386 php_hashcontext_object *hash = php_hashcontext_from_object(obj); in php_hashcontext_dtor() 1408 php_hashcontext_object *oldobj = php_hashcontext_from_object(zobj); in php_hashcontext_clone() 1410 php_hashcontext_object *newobj = php_hashcontext_from_object(znew); in php_hashcontext_clone() [all …]
|
H A D | hash_sha3.c | 204 static int php_sha3_unserialize(php_hashcontext_object *hash, in php_sha3_unserialize() 238 static int php_sha3##bits##_unserialize(php_hashcontext_object *hash, \ 296 static int php_keccak_serialize(const php_hashcontext_object *hash, zend_long *magic, zval *zv) in php_keccak_serialize() 302 static int php_keccak_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_keccak_unserialize()
|
H A D | hash_md.c | 50 static int php_md2_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv); 358 static int php_md2_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_md2_unserialize()
|
H A D | hash_snefru.c | 192 static int php_snefru_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_snefru_unserialize()
|
H A D | hash_tiger.c | 242 static int php_tiger_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_tiger_unserialize()
|
H A D | hash_whirlpool.c | 432 static int php_whirlpool_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_whirlpool_unserialize()
|
H A D | hash_gost.c | 307 static int php_gost_unserialize(php_hashcontext_object *hash, zend_long magic, const zval *zv) in php_gost_unserialize()
|
Completed in 22 milliseconds