Home | History | Annotate | Download | only in net

Lines Matching defs:deflate

30   (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
66 # define deflate z_deflate
164 /* The memory requirements for deflate are (in bytes):
425 /* Allowed flush values; see deflate() below for details */
457 /* The deflate compression method (the only one supported in this version) */
492 perform any compression: this will be done by deflate().
496 ZEXTERN int ZEXPORT deflate(z_streamp, int);
498 deflate compresses as much data as possible, and stops when the input
503 The detailed semantics are as follows. deflate performs one or both of the
509 processing will resume at this point for the next call of deflate().
517 Before the call of deflate(), the application should ensure that at least
522 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK
539 If deflate returns with avail_out == 0, this function must be called again
541 avail_out), until the flush is complete (deflate returns with non-zero
552 pending output is flushed and deflate returns with Z_STREAM_END if there
553 was enough output space; if deflate returns with Z_OK, this function must be
556 deflate has returned Z_STREAM_END, the only possible operations on the
561 0.1% larger than avail_in plus 12 bytes. If deflate does not return
564 deflate() sets strm->adler to the adler32 checksum of all input read
567 deflate() may update data_type if it can make a good guess about
572 deflate() returns Z_OK if some progress has been made (more input
741 not perform any compression: this will be done by deflate().
749 call of deflate. The compressor and decompressor must use exactly the same
762 deflate or deflate2. Thus the strings most likely to be useful should be
773 inconsistent (for example if deflate has already been called for this stream
775 perform any compression: this will be done by deflate().
823 take effect only at the next call of deflate().
826 a call of deflate(), since the currently available input may have to
883 description of deflate with Z_FULL_FLUSH) can be found, or until all
1055 flush is as in the deflate() function. The return value is the zlib