• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/common/

Lines Matching refs:flush

335 /* Allowed flush values; see deflate() below for details */
406 extern int EXPORT deflate OF((z_streamp strm, int flush));
416 accordingly. This action is forced if the parameter flush is non zero.
417 Forcing flush frequently degrades the compression ratio, so this parameter
419 Some output may be provided even if flush is not set.
430 If the parameter flush is set to Z_PARTIAL_FLUSH, the current compression
434 Z_SYNC_FLUSH has the same effect as partial flush except that the compressed
439 If flush is set to Z_FULL_FLUSH, the compression block is terminated, a
445 this function must be called again with the same value of the flush
446 parameter and more output space (updated avail_out), until the flush is
449 If the parameter flush is set to Z_PACKET_FLUSH, the compression
455 If the parameter flush is set to Z_FINISH, 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
511 extern int EXPORT inflate OF((z_streamp strm, int flush));
523 about the flush parameter).
534 If the parameter flush is set to Z_PARTIAL_FLUSH or Z_PACKET_FLUSH,
536 flushing behavior of inflate is not specified for values of the flush
545 (a single call of inflate), the parameter flush should be set to
572 This function discards any unprocessed input and does not flush any
730 or flush).
907 extern int EXPORT gzflush OF((gzFile file, int flush));
910 flush is as in the deflate() function. The return value is the zlib
912 the flush parameter is Z_FINISH and all output could be flushed.