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

Lines Matching defs:compressed

74 		 * Value stored in the Compressed Size field, or
75 * VLI_UNKNOWN if Compressed Size is not present.
77 vli_type compressed;
91 /* Observed compressed size of the current Block */
92 vli_type compressed;
218 * Decode the Compressed Data field from a Block. Update and validate
219 * the observed compressed and uncompressed sizes of the Block so that
243 s->block.compressed += b->in_pos - s->in_start;
250 if (s->block.compressed > s->block_header.compressed
265 if (s->block_header.compressed != VLI_UNKNOWN
266 && s->block_header.compressed
267 != s->block.compressed)
276 + s->block.compressed;
496 /* Compressed Size */
502 s->block_header.compressed = s->vli;
504 s->block_header.compressed = VLI_UNKNOWN;
564 s->block.compressed = 0;
649 * Size of Compressed Data + Block Padding
651 * s->block.compressed for anything else
655 while (s->block.compressed & 3) {
662 ++s->block.compressed;