copy_hash         559 ext/hash/hash.c 	php_hash_data *hash, *copy_hash;
copy_hash         581 ext/hash/hash.c 	copy_hash = emalloc(sizeof(php_hash_data));
copy_hash         582 ext/hash/hash.c 	copy_hash->ops = hash->ops;
copy_hash         583 ext/hash/hash.c 	copy_hash->context = context;
copy_hash         584 ext/hash/hash.c 	copy_hash->options = hash->options;
copy_hash         585 ext/hash/hash.c 	copy_hash->key = ecalloc(1, hash->ops->block_size);
copy_hash         587 ext/hash/hash.c 		memcpy(copy_hash->key, hash->key, hash->ops->block_size);
copy_hash         589 ext/hash/hash.c 	RETURN_RES(zend_register_resource(copy_hash, php_hash_le_hash));