Home | History | Annotate | Download | only in zlib

Lines Matching refs:deflate

0 /* deflate.c -- compress data using the deflation algorithm
39 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification".
52 #include "deflate.h"
55 " deflate 1.2.5 Copyright 1995-2010 Jean-loup Gailly and Mark Adler ";
69 finish_started, /* finish started, need only more output at next deflate */
146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
372 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
437 err = deflate(strm, Z_BLOCK);
478 * resulting from using fixed blocks instead of stored blocks, which deflate
505 case 0: /* raw deflate */
557 * Flush as much pending output as possible. All deflate() output goes
582 int ZEXPORT deflate (strm, flush)
586 int old_flush; /* value of flush param for previous deflate call */
790 /* Since avail_out is 0, deflate will be called again with
794 * return OK instead of BUF_ERROR at next call of deflate:
833 * of deflate should use the same flush parameter to make sure
887 /* If avail_out is zero, the application will call deflate again
987 * and total number of bytes read. All deflate() input goes through
1104 * to make deflate deterministic.
1120 * the output of deflate is not affected by the uninitialized values.
1594 * matter since it will be recomputed at next deflate call.
1739 * deflate switches away from Z_RLE.)
1805 * (It will be regenerated if this run of deflate switches away from Huffman.)