Searched defs:inflate (Results 1 - 5 of 5) sorted by relevance

/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/
H A DInflater.cs16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush); method in class:DotZLib.Inflater
67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
/vbox/src/libs/zlib-1.2.6/contrib/delphi/
H A DZLib.pas206 {$L inflate.obj}
246 // inflate decompresses data
249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function
347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do
380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then
517 CCheck(inflate(FZRec, 0));
/vbox/src/libs/zlib-1.2.6/contrib/pascal/
H A Dzlibpas.pas110 function inflate(var strm: z_stream; flush: Integer): Integer; function
182 {$L inflate.obj}
208 function inflate; external; function
/vbox/src/libs/zlib-1.2.6/
H A Dinflate.c0 /* inflate.c -- zlib decompression
10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
53 * source file infback.c to provide a call-back interface to inflate fo
609 int ZEXPORT inflate(strm, flush) function
[all...]
H A Dzconf.h22 # define inflate vboxzlib_inflate macro
181 # define inflate z_inflate macro
350 The memory requirements for inflate are (in bytes) 1 << windowBits

Completed in 3104 milliseconds