Lines Matching full:uncompressed
56 * would read beyond the beginning of the uncompressed stream.
73 * read beyond the beginning of the uncompressed stream.
231 /* Uncompressed size of LZMA chunk (2 MiB at maximum) */
232 uint32_t uncompressed; member
235 * Compressed size of LZMA chunk or compressed/uncompressed
236 * size of uncompressed chunk (64 KiB at maximum)
242 * the first chunk (LZMA or uncompressed).
377 /* Copy uncompressed data as is from input to dictionary and output buffers. */
396 * uncompressed size of the file is larger than the caller in dict_uncompressed()
962 * decoding or copying of uncompressed chunks to other functions.
978 * an uncompressed chunk in xz_dec_lzma2_run()
979 * 0x02 Uncompressed chunk (no dictionary reset) in xz_dec_lzma2_run()
994 * uncompressed size (bits 16-20). in xz_dec_lzma2_run()
1017 s->lzma2.uncompressed = (tmp & 0x1F) << 16; in xz_dec_lzma2_run()
1050 s->lzma2.uncompressed in xz_dec_lzma2_run()
1056 s->lzma2.uncompressed in xz_dec_lzma2_run()
1105 s->lzma2.uncompressed)); in xz_dec_lzma2_run()
1109 s->lzma2.uncompressed -= dict_flush(&s->dict, b); in xz_dec_lzma2_run()
1111 if (s->lzma2.uncompressed == 0) { in xz_dec_lzma2_run()
1267 s->lzma2.uncompressed)); in xz_dec_microlzma_run()
1272 s->lzma2.uncompressed -= dict_flush(&s->dict, b); in xz_dec_microlzma_run()
1274 if (s->lzma2.uncompressed == 0) { in xz_dec_microlzma_run()
1330 s->s.lzma2.uncompressed = uncomp_size; in xz_dec_microlzma_reset()