Home | History | Annotate | Download | only in examples

Lines Matching refs:deflate

53    the start of the final deflate block.  Also whether using Z_BLOCK or not,
66 data is saved along with the number of unused bits to initialize deflate.
68 A deflate process is initialized, using the last 32K of the uncompressed
71 the dictionary. The deflate output bit buffer is also initialized with the
72 last bits from the original deflate stream. From here on, the data to
73 append is simply compressed using deflate, and written to the gzip file.
253 /* decompress gzip file "name", return strm with a deflate stream ready to
255 descriptor pointing to where to write the compressed data -- the deflate
287 /* decompress the deflate stream, saving append information */
340 /* check gzip trailer and save total for deflate */
365 /* set up deflate stream with window, crc, total_in, and leftover bits */
384 /* append file "name" to gzip file gd using deflate stream strm -- if last
385 is true, then finish off the deflate stream at the end */
424 ret = deflate(strm, last && len == 0 ? Z_FINISH : Z_NO_FLUSH);