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

/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/
H A DDeflater.cs16 /// Implements a data compressor, using the deflate algorithm in the ZLib dll
25 private static extern int deflate(ref ZStream sz, int flush); method in class:DotZLib.Deflater
69 err = deflate(ref _ztream, (int)FlushTypes.None);
74 err = deflate(ref _ztream, (int)FlushTypes.None);
91 err = deflate(ref _ztream, (int)FlushTypes.Finish);
101 /// Closes the internal zlib deflate stream
/vbox/src/libs/zlib-1.2.6/contrib/delphi/
H A DZLib.pas203 {$L deflate.obj}
240 // deflate compresses data
243 function deflate(var strm: TZStreamRec; flush: Integer): Integer; external; function
304 while CCheck(deflate(strm, Z_FINISH)) <> Z_STREAM_END do
424 while (CCheck(deflate(FZRec, Z_FINISH)) <> Z_STREAM_END)
451 CCheck(deflate(FZRec, 0));
/vbox/src/libs/zlib-1.2.6/contrib/pascal/
H A Dzlibpas.pas107 function deflate(var strm: z_stream; flush: Integer): Integer; function
179 {$L deflate.obj}
195 function deflate; external; function
/vbox/src/libs/zlib-1.2.6/
H A Ddeflate.c0 /* deflate.c -- compress data using the deflation algorithm
52 #include "deflate.h"
55 " deflate 1.2.6 Copyright 1995-2012 Jean-loup Gailly and Mark Adler ";
69 finish_started, /* finish started, need only more output at next deflate */
146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
411 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
515 err = deflate(strm, Z_BLOCK);
556 * resulting from using fixed blocks instead of stored blocks, which deflate
583 case 0: /* raw deflate */
635 * Flush as much pending output as possible. All deflate() outpu
663 int ZEXPORT deflate (strm, flush) function
[all...]
H A Dzconf.h19 # define deflate vboxzlib_deflate macro
130 # define deflate z_deflate macro
342 /* The memory requirements for deflate are (in bytes):

Completed in 55 milliseconds