/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/ |
H A D | Deflater.cs | 16 /// 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/watcom/ |
H A D | watcom_l.mak | 7 C_SOURCE = adler32.c compress.c crc32.c deflate.c & 12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj & 30 wlib -b -c $(ZLIB_LIB) -+deflate.obj -+infback.obj
|
H A D | watcom_f.mak | 7 C_SOURCE = adler32.c compress.c crc32.c deflate.c & 12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj & 30 wlib -b -c $(ZLIB_LIB) -+deflate.obj -+infback.obj
|
/vbox/src/libs/zlib-1.2.6/contrib/delphi/ |
H A D | zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj 23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj 39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
|
H A D | ZLib.pas | 203 {$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 D | zlibd32.mak | 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj 23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj 39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
|
H A D | example.pas | 181 * Test deflate with small buffers 206 err := deflate(c_stream, Z_NO_FLUSH); 207 CHECK_ERR(err, 'deflate'); 214 err := deflate(c_stream, Z_FINISH); 217 CHECK_ERR(err, 'deflate'); 269 * Test deflate with large buffers and dynamic change of compression level 292 err := deflate(c_stream, Z_NO_FLUSH); 293 CHECK_ERR(err, 'deflate'); 295 EXIT_ERR('deflate not greedy'); 301 err := deflate(c_strea [all...] |
H A D | zlibpas.pas | 107 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 D | compress.c | 49 err = deflate(&stream, Z_FINISH);
|
H A D | make_vms.com | 150 $ CALL MAKE deflate.OBJ "CC ''CCOPT' deflate" - 151 deflate.c deflate.h zutil.h zlib.h zconf.h 169 trees.c deflate.h zutil.h zlib.h zconf.h 404 deflate.obj, trees.obj, zutil.obj, inflate.obj, \ 433 deflate.obj : deflate.c deflate.h zutil.h zlib.h zconf.h 443 trees.obj : trees.c deflate [all...] |
H A D | zconf.h | 19 # define deflate vboxzlib_deflate macro 130 # define deflate z_deflate macro 342 /* The memory requirements for deflate are (in bytes):
|
H A D | zlib.h | 28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format). 61 around a deflate stream, which is itself documented in RFC 1951. 66 gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. 171 /* Allowed flush values; see deflate() and inflate() below for details */ 206 /* The deflate compression method (the only one supported in this version) */ 242 this will be done by deflate(). 246 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); 248 deflate compresses as much data as possible, and stops when the input 253 The detailed semantics are as follows. deflate performs one or both of the 259 processing will resume at this point for the next call of deflate() [all...] |
H A D | zconf.h.cmakein | 41 # define deflate z_deflate 249 /* The memory requirements for deflate are (in bytes):
|
H A D | zconf.h.in | 39 # define deflate z_deflate 247 /* The memory requirements for deflate are (in bytes):
|
H A D | gzwrite.c | 28 /* only need output buffer and deflate state if compressing */ 38 /* allocate deflate memory, set up for gzip compression */ 66 flush is assumed to be a valid deflate() flush value. If flush is Z_FINISH, 67 then the deflate() state is reset to start a new gzip stream. If gz->direct 93 /* run deflate() on provided input until it produces no more output */ 115 ret = deflate(strm, flush); 118 "internal error: deflate stream corrupt"); 124 /* if that completed a deflate stream, allow another to start */
|
/vbox/src/libs/zlib-1.2.6/test/ |
H A D | example.c | 198 * Test deflate() with small buffers 220 err = deflate(&c_stream, Z_NO_FLUSH); 221 CHECK_ERR(err, "deflate"); 226 err = deflate(&c_stream, Z_FINISH); 228 CHECK_ERR(err, "deflate"); 277 * Test deflate() with large buffers and dynamic change of compression level 301 err = deflate(&c_stream, Z_NO_FLUSH); 302 CHECK_ERR(err, "deflate"); 304 fprintf(stderr, "deflate not greedy\n"); 312 err = deflate( [all...] |
H A D | minigzip.c | 142 /* for Z_SOLO, create simplified gz* functions using deflate and inflate */ 248 (void)deflate(strm, Z_NO_FLUSH); 308 (void)deflate(strm, Z_FINISH);
|
/vbox/src/libs/zlib-1.2.6/examples/ |
H A D | fitblk.c | 19 enough deflate blocks to produce output to fill the requested 21 below). The last deflate block may go quite a bit past that, but 24 buffer. The deflate process is terminated after that amount of 26 The last deflate block of the result will be of a comparable size 27 to the final product, so that the header for that deflate block and 44 the last deflate block compressing more efficiently with a smaller 47 out the requested size, and small enough so that the final deflate 48 block of the second pass will be close in size to the final deflate 71 input reached; return last deflate() return value, or Z_ERRNO if 86 ret = deflate(de [all...] |
H A D | zpipe.c | 1 /* zpipe.c: example of proper use of zlib's inflate() and deflate() 44 /* allocate deflate state */ 62 /* run deflate() on input until output buffer not full, finish 67 ret = deflate(&strm, flush); /* no bad return value */ 88 allocated for processing, Z_DATA_ERROR if the deflate data is 110 /* decompress until deflate stream ends or end of file */ 165 fputs("invalid or incomplete deflate data\n", stderr);
|
H A D | gzappend.c | 53 the start of the final deflate block. Also whether using Z_BLOCK or not, 66 data is saved along with the number of unused bits to initialize deflate. 68 A deflate process is initialized, using the last 32K of the uncompressed 71 the dictionary. The deflate output bit buffer is also initialized with the 72 last bits from the original deflate stream. From here on, the data to 73 append is simply compressed using deflate, and written to the gzip file. 253 /* decompress gzip file "name", return strm with a deflate stream ready to 255 descriptor pointing to where to write the compressed data -- the deflate 287 /* decompress the deflate stream, saving append information */ 340 /* check gzip trailer and save total for deflate */ [all...] |
H A D | gzlog.c | 114 stored block in the deflate format. See the bit offset field below. 124 that is in the compressed portion of the deflate stream. These are used 268 /* size of a deflate dictionary (this cannot be changed) */ 308 8, /* compression method is deflate */ 499 deflate stored blocks. Return -1 if there was an error reading or writing 599 foo.gz deflate data immediately after the previous compressed data. This 619 /* set up for deflate, allocating memory */ 642 /* prime deflate with last bits of previous block, position write 661 deflate(&strm, len ? Z_NO_FLUSH : Z_PARTIAL_FLUSH);
|
/vbox/src/libs/zlib-1.2.6/contrib/testzlib/ |
H A D | testzlib.c | 209 ret=deflate(&zcpr,(zcpr.avail_in==lOrigToDo) ? Z_FINISH : Z_SYNC_FLUSH);
|
/vbox/src/VBox/Runtime/common/zip/ |
H A D | gzipvfs.cpp | 92 /** gzip deflate compression method. */ 486 deflate() so we don't waste time filling up the corners. */ 497 int rcZlib = deflate(&pThis->Zlib, Z_NO_FLUSH); 555 * @param fFlushType The flush type to pass to deflate(). 581 int rcZlib = deflate(&pThis->Zlib, fFlushType);
|
/vbox/src/libs/zlib-1.2.6/contrib/masmx64/ |
H A D | gvmat64.asm | 11 ; from Jean-loup Gailly in deflate.c of zLib and infoZip zip. 193 ; parameter 1 in r8(deflate state s), param 2 in rdx (cur match)
|
/vbox/src/libs/libpng-1.2.8/ |
H A D | pngwutil.c | 212 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH); 267 ret = deflate(&png_ptr->zstream, Z_FINISH); 1848 ret = deflate(&png_ptr->zstream, Z_FINISH); 2094 * with window size <= deflate window (usually 32K) 2686 ret = deflate(&png_ptr->zstream, Z_NO_FLUSH);
|