Lines Matching refs:deflate
0 /* deflate.c -- compress data using the deflation algorithm
51 #include "deflate.h"
54 " deflate 1.1.4 Copyright 1995-2002 Jean-loup Gailly ";
68 finish_started, /* finish started, need only more output at next deflate */
109 * See deflate.c for comments about the MIN_MATCH+1.
139 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
348 s->noheader = 0; /* was set to -1 by deflate(..., Z_FINISH); */
383 err = deflate(strm, Z_PARTIAL_FLUSH);
410 * Flush as much pending output as possible. All deflate() output goes
435 int ZEXPORT deflate (strm, flush)
439 int old_flush; /* value of flush param for previous deflate call */
485 /* Since avail_out is 0, deflate will be called again with
489 * return OK instead of BUF_ERROR at next call of deflate:
526 * of deflate should use the same flush parameter to make sure
561 /* If avail_out is zero, the application will call deflate again
656 * and total number of bytes read. All deflate() input goes through
766 * to make deflate deterministic.
1213 * matter since it will be recomputed at next deflate call.