Searched refs:copy_hash (Results 1 – 1 of 1) sorted by relevance
561 php_hash_data *hash, *copy_hash; in PHP_FUNCTION() local581 copy_hash = emalloc(sizeof(php_hash_data)); in PHP_FUNCTION()582 copy_hash->ops = hash->ops; in PHP_FUNCTION()583 copy_hash->context = context; in PHP_FUNCTION()584 copy_hash->options = hash->options; in PHP_FUNCTION()585 copy_hash->key = ecalloc(1, hash->ops->block_size); in PHP_FUNCTION()587 memcpy(copy_hash->key, hash->key, hash->ops->block_size); in PHP_FUNCTION()589 ZEND_REGISTER_RESOURCE(return_value, copy_hash, php_hash_le_hash); in PHP_FUNCTION()
Completed in 11 milliseconds