Lines Matching full:compressed
12 DEFLATE Compressed Data Format Specification version 1.3
42 This specification defines a lossless compressed data format that
60 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
72 2. Compressed representation overview ............................. 4
76 3.2. Compressed block format ................................... 6
80 3.2.4. Non-compressed blocks (BTYPE=00) ................... 11
81 3.2.5. Compressed blocks (length and distance codes) ...... 11
97 compressed data format that:
116 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
126 * Allow random access to compressed data;
172 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
187 2. Compressed representation overview
189 A compressed data set consists of a series of blocks, corresponding
193 Each block is compressed using a combination of the LZ77 algorithm
200 describe the representation of the compressed data part, and a
201 compressed data part. (The Huffman trees themselves are compressed
202 using Huffman encoding.) The compressed data consists of a series of
212 compressed data is represented using a Huffman code, using one code
215 the compressed data for that block.
228 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
284 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
287 bit-oriented. However, we describe the compressed block format
291 compressed byte sequence:
302 In other words, if one were to print out the compressed data as
311 3.2. Compressed block format
340 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
396 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
452 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
492 Each block of compressed data begins with 3 header bits
508 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
514 BTYPE specifies how the data are compressed, as follows:
517 01 - compressed with fixed Huffman codes
518 10 - compressed with dynamic Huffman codes
521 The only difference between the two compressed cases is how the
536 if compressed with dynamic Huffman codes
564 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
576 3.2.4. Non-compressed blocks (BTYPE=00)
589 3.2.5. Compressed blocks (length and distance codes)
620 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
676 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
682 occur in the compressed data, but participate in the code
688 31 will never actually occur in the compressed data.
694 compressed data, first the literal/length code and then the
698 compressed using a Huffman code. The alphabet for code lengths
732 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
750 The actual compressed data of the block,
776 compressed data format without reference to any particular
777 compression algorithm, the format is related to the compressed
788 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
844 RFC 1951 DEFLATE Compressed Data Format Specification May 1996
878 means of validating the integrity of the compressed data. See
900 RFC 1951 DEFLATE Compressed Data Format Specification May 1996