Home | History | Annotate | Download | only in xz-embedded

Lines Matching defs: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;
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).
373 /* Copy uncompressed data as is from input to dictionary and output buffers. */
929 * decoding or copying of uncompressed chunks to other functions.
945 * an uncompressed chunk
946 * 0x02 Uncompressed chunk (no dictionary reset)
961 * uncompressed size (bits 16-20).
984 s->lzma2.uncompressed = (tmp & 0x1F) << 16;
1017 s->lzma2.uncompressed
1023 s->lzma2.uncompressed
1068 s->lzma2.uncompressed));
1072 s->lzma2.uncompressed -= dict_flush(&s->dict, b);
1074 if (s->lzma2.uncompressed == 0) {