Home
last modified time | relevance | path

Searched refs:uncompressed_chunk (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/block/
H A Ddmg.c565 s->uncompressed_chunk = qemu_try_blockalign(bs->file->bs, in dmg_open()
567 if (s->compressed_chunk == NULL || s->uncompressed_chunk == NULL) { in dmg_open()
589 qemu_vfree(s->uncompressed_chunk); in dmg_open()
656 s->zstream.next_out = s->uncompressed_chunk; in dmg_read_chunk()
682 (char *)s->uncompressed_chunk, in dmg_read_chunk()
703 (char *)s->uncompressed_chunk, in dmg_read_chunk()
712 s->uncompressed_chunk, 0); in dmg_read_chunk()
759 data = s->uncompressed_chunk + sector_offset_in_chunk * 512; in dmg_co_preadv()
779 qemu_vfree(s->uncompressed_chunk); in dmg_close()
H A Ddmg.h50 uint8_t *uncompressed_chunk; member