HomeSort by relevance Sort by last modified time
    Searched refs:cluster_cache (Results 1 - 4 of 4) sorted by null

  /external/qemu/block/
qcow.c 70 uint8_t *cluster_cache; member in struct:BDRVQcowState
145 s->cluster_cache = qemu_malloc(s->cluster_size);
146 if (!s->cluster_cache)
167 qemu_free(s->cluster_cache);
335 if (bdrv_pwrite(bs->file, cluster_offset, s->cluster_cache, s->cluster_size) !=
435 if (decompress_buffer(s->cluster_cache, s->cluster_size,
471 memcpy(buf, s->cluster_cache + index_in_cluster * 512, 512 * n);
605 s->cluster_cache + index_in_cluster * 512, 512 * acb->n);
738 qemu_free(s->cluster_cache);
qcow2.h 98 uint8_t *cluster_cache; member in struct:BDRVQcowState
qcow2.c 208 s->cluster_cache = qemu_malloc(s->cluster_size);
249 qemu_free(s->cluster_cache);
457 memcpy(acb->buf, s->cluster_cache + index_in_cluster * 512,
666 qemu_free(s->cluster_cache);
    [all...]
qcow2-cluster.c 378 memcpy(buf, s->cluster_cache + index_in_cluster * 512, 512 * n);
916 if (decompress_buffer(s->cluster_cache, s->cluster_size,

Completed in 50 milliseconds