Lines Matching refs:flush

168 /* Allowed flush values; see deflate() and inflate() below for details */
242 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
247 forced to flush.
258 accordingly. This action is forced if the parameter flush is non zero.
259 Forcing flush frequently degrades the compression ratio, so this parameter
261 Some output may be provided even if flush is not set.
272 Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to
276 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
283 If flush is set to Z_FULL_FLUSH, all output is flushed as with
290 with the same value of the flush parameter and more output space (updated
291 avail_out), until the flush is complete (deflate returns with non-zero
293 avail_out is greater than six to avoid repeated flush markers due to
296 If the parameter flush is set to Z_FINISH, pending input is processed,
319 consumed and all output has been produced (only when flush is set to
331 This function discards any unprocessed input and does not flush any
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
368 forced to flush.
381 about the flush parameter).
392 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH,
393 Z_FINISH, or Z_BLOCK. Z_SYNC_FLUSH requests that inflate() flush as much
415 (a single call of inflate), the parameter flush should be set to
426 first call. So the only effect of the flush parameter in this implementation
465 This function discards any unprocessed input and does not flush any
760 Skips invalid compressed data until a full flush point (see above the
764 inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR
765 if no more input was provided, Z_DATA_ERROR if no flush point has been found,
1173 ZEXTERN int ZEXPORT gzflush OF((gzFile file, int flush));
1176 flush is as in the deflate() function. The return value is the zlib
1178 the flush parameter is Z_FINISH and all output could be flushed.