Lines Matching refs:strm

201 extern int deflateInit (z_streamp strm, int level);
223 extern int zlib_deflate (z_streamp strm, int flush);
284 deflate() sets strm->adler to the adler32 checksum of all input read
301 extern int zlib_deflateEnd (z_streamp strm);
323 extern int zlib_inflateInit (z_streamp strm);
343 extern int zlib_inflate (z_streamp strm, int flush);
382 Also to assist in this, on return inflate() will set strm->data_type to the
383 number of unused bits in the last byte taken from strm->next_in, plus 64
388 uncompressed data from that block has been written to strm->next_out. The
411 below), inflate sets strm->adler to the adler32 checksum of the dictionary
413 strm->adler to the adler32 checksum of all output produced so far (that is,
442 extern int zlib_inflateEnd (z_streamp strm);
460 extern int deflateInit2 (z_streamp strm,
503 extern int zlib_deflateReset (z_streamp strm);
520 extern int inflateInit2 (z_streamp strm, int windowBits);
550 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
554 memory, Z_STREAM_ERROR if a parameter is invalid (such as a null strm). msg
561 extern int zlib_inflateReset (z_streamp strm);
571 extern int zlib_inflateIncomp (z_stream *strm);
580 #define zlib_deflateInit(strm, level) \
581 zlib_deflateInit2((strm), (level), Z_DEFLATED, MAX_WBITS, \
583 #define zlib_inflateInit(strm) \
584 zlib_inflateInit2((strm), DEF_WBITS)
586 extern int zlib_deflateInit2(z_streamp strm, int level, int method,
589 extern int zlib_inflateInit2(z_streamp strm, int windowBits);