Lines Matching full:strm
84 function deflateInit(var strm: z_stream; level: Integer): Integer;
85 function deflate(var strm: z_stream; flush: Integer): Integer;
86 function deflateEnd(var strm: z_stream): Integer;
87 function inflateInit(var strm: z_stream): Integer;
88 function inflate(var strm: z_stream; flush: Integer): Integer;
89 function inflateEnd(var strm: z_stream): Integer;
92 function deflateInit2(var strm: z_stream; level, method, windowBits,
94 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar;
97 function deflateReset(var strm: z_stream): Integer;
98 function deflateParams(var strm: z_stream; level, strategy: Integer): Integer;
99 function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt;
100 function deflatePrime(var strm: z_stream; bits, value: Integer): Integer;
101 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
102 function inflateSetDictionary(var strm: z_stream; const dictionary: PChar;
104 function inflateSync(var strm: z_stream): Integer;
106 function inflateReset(var strm: z_stream): Integer;
107 function inflateBackInit(var strm: z_stream;
109 function inflateBack(var strm: z_stream; in_fn: in_func; in_desc: Pointer;
111 function inflateBackEnd(var strm: z_stream): Integer;
129 function deflateInit_(var strm: z_stream; level: Integer;
131 function inflateInit_(var strm: z_stream; const version: PChar;
133 function deflateInit2_(var strm: z_stream;
136 function inflateInit2_(var strm: z_stream; windowBits: Integer;
138 function inflateBackInit_(var strm: z_stream;
187 function deflateInit(var strm: z_stream; level: Integer): Integer;
189 Result := deflateInit_(strm, level, ZLIB_VERSION, sizeof(z_stream));
192 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel,
195 Result := deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
199 function inflateInit(var strm: z_stream): Integer;
201 Result := inflateInit_(strm, ZLIB_VERSION, sizeof(z_stream));
204 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
206 Result := inflateInit2_(strm, windowBits, ZLIB_VERSION, sizeof(z_stream));
209 function inflateBackInit(var strm: z_stream;
212 Result := inflateBackInit_(strm, windowBits, window,