Home | History | Annotate | Download | only in examples

Lines Matching full:compressed

18    valid state.  The last data to be appended or compressed is saved in an
23 compressed portion, which is preloaded for the compression of the subsequent
36 foo.repairs -- log file for log file recovery operations (not compressed)
40 - compressed data ending initially with empty stored block
62 compressed data, and contains both the crc and length of just the compressed
68 to be compressed is missing due to some external force, a gzip file with
69 just the previous compressed data will be reconstructed. In this case, all
70 of the data that was to be compressed is lost (approximately one megabyte).
123 - Compressed data crc and length. This is the crc and length of the data
124 that is in the compressed portion of the deflate stream. These are used
128 stored in the gzip file, compressed and uncompressed. It is used to
141 also allows for new compressed data to be appended to the old compressed
143 block, or for the compressed data to be terminated and a valid gzip file
189 only the previous compressed data and proceed to the step after the next
193 compressed block. If there is no foo.dict, proceed anyway with the
214 restores the foo.gz to the previous compressed + uncompressed data state.
216 being restored to the previous compressed-only data state.
298 ulong ccrc; /* crc of compressed data */
299 ulong clen; /* length (modulo 2^32) of compressed data */
322 0, 0, 0, 0, 0, 0, 0, 0, /* compressed data crc and length */
598 /* Compress the len bytes at data and append the compressed data to the
599 foo.gz deflate data immediately after the previous compressed data. This
604 simply terminate the foo.gz file after the previously compressed data,
617 /* compress and append compressed data */
627 /* read in dictionary (last 32K of data that was compressed) */
689 /* update compressed crc and length */
972 /* roll back to compressed data, mark the compress in progress */