Home | History | Annotate | Download | only in old

Lines Matching full:flush

123 <li> int     <a href="#gzflush">gzflush</a> (gzFile file, int flush);
278 <font color="Blue"><dt> int <a name="gzflush">gzflush</a> (gzFile file, int flush);</font>
281 flush is as in the <a href="#deflate">deflate</a>() function. The return value is the zlib
283 the flush parameter is <a href="#Z_FINISH">Z_FINISH</a> and all output could be flushed.
352 <li> int <a href="#deflate">deflate</a> (<a href="#z_streamp">z_streamp</a> strm, int flush);
355 <li> int <a href="#inflate">inflate</a> (<a href="#z_streamp">z_streamp</a> strm, int flush);
393 <font color="Blue"><dt> int <a name="deflate">deflate</a> (<a href="#z_streamp">z_streamp</a> strm, int flush);</font>
398 forced to flush.<p>
411 accordingly. This action is forced if the parameter flush is non zero.
412 Forcing flush frequently degrades the compression ratio, so this parameter
414 Some output may be provided even if flush is not set.
427 If the parameter flush is set to <a href="#Z_SYNC_FLUSH">Z_SYNC_FLUSH</a>, all pending output is
435 If flush is set to <a href="#Z_FULL_FLUSH">Z_FULL_FLUSH</a>, all output is flushed as with
443 with the same value of the flush parameter and more output space (updated
444 <a href="#avail_out">avail_out</a>), until the flush is complete (<a href="#deflate">deflate</a> returns with non-zero
448 If the parameter flush is set to <a href="#Z_FINISH">Z_FINISH</a>, pending input is processed,
475 consumed and all output has been produced (only when flush is set to
484 This function discards any unprocessed input and does not flush any
515 <font color="Blue"><dt> int <a name="inflate">inflate</a> (<a href="#z_streamp">z_streamp</a> strm, int flush);</font>
520 except when forced to flush.
535 (see below about the flush parameter).
548 If the parameter flush is set to <a href="#Z_SYNC_FLUSH">Z_SYNC_FLUSH</a>, <a href="#inflate">inflate</a> flushes as much
550 not specified for values of the flush parameter other than <a href="#Z_SYNC_FLUSH">Z_SYNC_FLUSH</a>
557 (a single call of <a href="#inflate">inflate</a>), the parameter flush should be set to
593 This function discards any unprocessed input and does not flush any
771 <dd> Skips invalid compressed data until a full flush point (see above the
775 <a href="#inflateSync">inflateSync</a> returns <a href="#Z_OK">Z_OK</a> if a full flush point has been found, <a href="#Z_BUF_ERROR">Z_BUF_ERROR</a>
776 if no more input was provided, <a href="#Z_DATA_ERROR">Z_DATA_ERROR</a> if no flush point has been found,
912 /* Allowed flush values ; see <a href="#deflate">deflate</a>() below for details */