Lines Matching full:uncompressed
55 * would read beyond the beginning of the uncompressed stream.
72 * read beyond the beginning of the uncompressed stream.
230 /* Uncompressed size of LZMA chunk (2 MiB at maximum) */
231 uint32_t uncompressed; member
234 * Compressed size of LZMA chunk or compressed/uncompressed
235 * size of uncompressed chunk (64 KiB at maximum)
241 * the first chunk (LZMA or uncompressed).
376 /* Copy uncompressed data as is from input to dictionary and output buffers. */
395 * uncompressed size of the file is larger than the caller in dict_uncompressed()
961 * decoding or copying of uncompressed chunks to other functions.
976 * an uncompressed chunk in xz_dec_lzma2_run()
977 * 0x02 Uncompressed chunk (no dictionary reset) in xz_dec_lzma2_run()
992 * uncompressed size (bits 16-20). in xz_dec_lzma2_run()
1015 s->lzma2.uncompressed = (tmp & 0x1F) << 16; in xz_dec_lzma2_run()
1048 s->lzma2.uncompressed in xz_dec_lzma2_run()
1054 s->lzma2.uncompressed in xz_dec_lzma2_run()
1103 s->lzma2.uncompressed)); in xz_dec_lzma2_run()
1107 s->lzma2.uncompressed -= dict_flush(&s->dict, b); in xz_dec_lzma2_run()
1109 if (s->lzma2.uncompressed == 0) { in xz_dec_lzma2_run()
1264 s->lzma2.uncompressed)); in xz_dec_microlzma_run()
1269 s->lzma2.uncompressed -= dict_flush(&s->dict, b); in xz_dec_microlzma_run()
1271 if (s->lzma2.uncompressed == 0) { in xz_dec_microlzma_run()
1327 s->s.lzma2.uncompressed = uncomp_size; in xz_dec_microlzma_reset()