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

  /external/qemu/block/
qcow2-cluster.c 904 uint64_t coffset; local
906 coffset = cluster_offset & s->cluster_offset_mask;
907 if (s->cluster_cache_offset != coffset) {
909 sector_offset = coffset & 511;
912 ret = bdrv_read(bs->file, coffset >> 9, s->cluster_data, nb_csectors);
920 s->cluster_cache_offset = coffset;
qcow.c 426 uint64_t coffset; local
428 coffset = cluster_offset & s->cluster_offset_mask;
429 if (s->cluster_cache_offset != coffset) {
432 ret = bdrv_pread(bs->file, coffset, s->cluster_data, csize);
439 s->cluster_cache_offset = coffset;

Completed in 140 milliseconds