Lines Matching refs:strm
179 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
201 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
262 deflate() sets strm->adler to the adler32 checksum of all input read
279 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
294 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
314 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
361 below), inflate sets strm-adler to the adler32 checksum of the
363 it sets strm->adler to the adler32 checksum of all output produced
383 ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
401 ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
444 ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
467 Upon return of this function, strm->adler is set to the Adler32 value
498 ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm));
509 ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
523 be compressed and flushed. In particular, strm->avail_out must be non-zero.
527 if strm->avail_out was zero.
531 ZEXTERN int ZEXPORT inflateInit2 OF((z_streamp strm,
553 ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
572 ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm));
587 ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm));
860 ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
862 ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
864 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
868 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
870 #define deflateInit(strm, level) \
871 deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream))
872 #define inflateInit(strm) \
873 inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream))
874 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
875 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
877 #define inflateInit2(strm, windowBits) \
878 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))