Lines Matching refs:strm
518 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
519 ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
521 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
522 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
526 ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm));
527 ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
530 ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
532 ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm,
535 ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
538 ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm,
543 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
549 ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
551 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
649 ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
662 ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm));
713 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
715 #define inflateInit(strm) \ argument
716 inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream))
717 #define inflateInit2(strm, windowBits) \ argument
718 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))