Lines Matching refs:strm

244 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
330 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
365 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
464 ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
540 ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
597 ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm));
608 ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
629 ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm,
646 ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
655 ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm,
671 ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
738 ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
760 ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm));
791 ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm));
801 ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm,
817 ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm,
882 ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
951 ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm));
1319 ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
1321 ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
1323 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
1327 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1329 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1333 #define deflateInit(strm, level) \ argument
1334 deflateInit_((strm), (level), ZLIB_VERSION, sizeof(z_stream))
1335 #define inflateInit(strm) \ argument
1336 inflateInit_((strm), ZLIB_VERSION, sizeof(z_stream))
1337 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument
1338 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1340 #define inflateInit2(strm, windowBits) \ argument
1341 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1342 #define inflateBackInit(strm, windowBits, window) \ argument
1343 inflateBackInit_((strm), (windowBits), (window), \