• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/pascal/

Lines Matching refs:z_stream

27   z_streamp = ^z_stream;
28 z_stream = packed record
106 function deflateInit(var strm: z_stream; level: Integer): Integer;
107 function deflate(var strm: z_stream; flush: Integer): Integer;
108 function deflateEnd(var strm: z_stream): Integer;
109 function inflateInit(var strm: z_stream): Integer;
110 function inflate(var strm: z_stream; flush: Integer): Integer;
111 function inflateEnd(var strm: z_stream): Integer;
114 function deflateInit2(var strm: z_stream; level, method, windowBits,
116 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar;
118 function deflateCopy(var dest, source: z_stream): Integer;
119 function deflateReset(var strm: z_stream): Integer;
120 function deflateParams(var strm: z_stream; level, strategy: Integer): Integer;
121 function deflateTune(var strm: z_stream; good_length, max_lazy, nice_length, max_chain: Integer): Integer;
122 function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt;
123 function deflatePending(var strm: z_stream; var pending: Integer; var bits: Integer): Integer;
124 function deflatePrime(var strm: z_stream; bits, value: Integer): Integer;
125 function deflateSetHeader(var strm: z_stream; head: gz_header): Integer;
126 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
127 function inflateSetDictionary(var strm: z_stream; const dictionary: PChar;
129 function inflateSync(var strm: z_stream): Integer;
130 function inflateCopy(var dest, source: z_stream): Integer;
131 function inflateReset(var strm: z_stream): Integer;
132 function inflateReset2(var strm: z_stream; windowBits: Integer): Integer;
133 function inflatePrime(var strm: z_stream; bits, value: Integer): Integer;
134 function inflateMark(var strm: z_stream): LongInt;
135 function inflateGetHeader(var strm: z_stream; var head: gz_header): Integer;
136 function inflateBackInit(var strm: z_stream;
138 function inflateBack(var strm: z_stream; in_fn: in_func; in_desc: Pointer;
140 function inflateBackEnd(var strm: z_stream): Integer;
160 function deflateInit_(var strm: z_stream; level: Integer;
162 function inflateInit_(var strm: z_stream; const version: PChar;
164 function deflateInit2_(var strm: z_stream;
167 function inflateInit2_(var strm: z_stream; windowBits: Integer;
169 function inflateBackInit_(var strm: z_stream;
227 function deflateInit(var strm: z_stream; level: Integer): Integer;
229 Result := deflateInit_(strm, level, ZLIB_VERSION, sizeof(z_stream));
232 function deflateInit2(var strm: z_stream; level, method, windowBits, memLevel,
236 ZLIB_VERSION, sizeof(z_stream));
239 function inflateInit(var strm: z_stream): Integer;
241 Result := inflateInit_(strm, ZLIB_VERSION, sizeof(z_stream));
244 function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
246 Result := inflateInit2_(strm, windowBits, ZLIB_VERSION, sizeof(z_stream));
249 function inflateBackInit(var strm: z_stream;
253 ZLIB_VERSION, sizeof(z_stream));