Home
last modified time | relevance | path

Searched refs:coffset (Results 1 – 5 of 5) sorted by relevance

/qemu/block/
H A Dqcow.c600 uint64_t coffset; in decompress_cluster() local
602 coffset = cluster_offset & s->cluster_offset_mask; in decompress_cluster()
603 if (s->cluster_cache_offset != coffset) { in decompress_cluster()
607 ret = bdrv_co_pread(bs->file, coffset, csize, s->cluster_data, 0); in decompress_cluster()
614 s->cluster_cache_offset = coffset; in decompress_cluster()
H A Dqcow2-refcount.c1182 uint64_t coffset; in qcow2_free_any_cluster() local
1185 qcow2_parse_compressed_l2_entry(bs, l2_entry, &coffset, &csize); in qcow2_free_any_cluster()
1186 qcow2_free_clusters(bs, coffset, csize, type); in qcow2_free_any_cluster()
1324 uint64_t coffset; in qcow2_update_snapshot_refcount() local
1328 &coffset, &csize); in qcow2_update_snapshot_refcount()
1330 bs, coffset, csize, in qcow2_update_snapshot_refcount()
1686 uint64_t coffset; in check_refcounts_l2() local
1730 qcow2_parse_compressed_l2_entry(bs, l2_entry, &coffset, &csize); in check_refcounts_l2()
1732 bs, res, refcount_table, refcount_table_size, coffset, csize); in check_refcounts_l2()
H A Dqcow2-cluster.c2550 uint64_t *coffset, int *csize) in qcow2_parse_compressed_l2_entry() argument
2557 *coffset = l2_entry & s->cluster_offset_mask; in qcow2_parse_compressed_l2_entry()
2561 (*coffset & (QCOW2_COMPRESSED_SECTOR_SIZE - 1)); in qcow2_parse_compressed_l2_entry()
H A Dqcow2.h945 uint64_t *coffset, int *csize);
H A Dqcow2.c4817 uint64_t coffset; in qcow2_co_preadv_compressed() local
4821 qcow2_parse_compressed_l2_entry(bs, l2_entry, &coffset, &csize); in qcow2_co_preadv_compressed()
4831 ret = bdrv_co_pread(bs->file, coffset, csize, buf, 0); in qcow2_co_preadv_compressed()