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".
50 /* @(#) $Id: deflate.c,v 3.6 2005/08/04 19:14:14 tor%cs.brown.edu Exp $ */
52 #include "deflate.h"
55 " deflate 1.2.3 Copyright 1995-2005 Jean-loup Gailly ";
69 finish_started, /* finish started, need only more output at next deflate */
115 * See deflate.c for comments about the MIN_MATCH+1.
152 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
376 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
440 err = deflate(strm, Z_PARTIAL_FLUSH);
481 * resulting from using fixed blocks instead of stored blocks, which deflate
527 * Flush as much pending output as possible. All deflate() output goes
552 int ZEXPORT deflate (strm, flush)
556 int old_flush; /* value of flush param for previous deflate call */
760 /* Since avail_out is 0, deflate will be called again with
764 * return OK instead of BUF_ERROR at next call of deflate:
801 * of deflate should use the same flush parameter to make sure
851 /* If avail_out is zero, the application will call deflate again
951 * and total number of bytes read. All deflate() input goes through
1068 * to make deflate deterministic.
1084 * the output of deflate is not affected by the uninitialized values.
1532 * matter since it will be recomputed at next deflate call.
1681 * deflate switches away from Z_RLE.)