/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
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
|
/src/distrib/utils/zcat/ |
zcat.c | 119 * XXX: hacks to keep gzio.c from pulling in deflate stuff 130 int deflate(z_streamp strm, int flush) function in typeref:typename:int
|
/src/common/dist/zlib/contrib/delphi/ |
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
|
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));
|
/src/common/dist/zlib/contrib/pascal/ |
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
|
zlibpas.pas | 107 function deflate(var strm: z_stream; flush: Integer): Integer; function 179 {$L deflate.obj} 195 function deflate; external; function
|
/src/sys/dev/pci/ |
viomb.c | 103 static int deflate(struct viomb_softc *); 177 "deflate") != 0) 380 * Deflate: free previously allocated memory. 383 deflate(struct viomb_softc *sc) function in typeref:typename:int 412 printf("%s: deflate enqueue failed.\n", 422 printf("%s: deflate enqueue failed.\n", 468 printf("%s: deflate dequeue failed, errno %d\n", 494 * Kthread: sleeps, eventually inflate and deflate. 515 r = deflate(sc);
|
/src/sys/net/ |
zlib.h | 30 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 66 # define deflate z_deflate macro 164 /* The memory requirements for deflate are (in bytes): 425 /* Allowed flush values; see deflate() below for details */ 457 /* The deflate compression method (the only one supported in this version) */ 492 perform any compression: this will be done by deflate(). 496 ZEXTERN int ZEXPORT deflate(z_streamp, int); 498 deflate compresses as much data as possible, and stops when the input 503 The detailed semantics are as follows. deflate performs one or both of the 509 processing will resume at this point for the next call of deflate() [all...] |
zlib.c | 5 * by Paul Mackerras to aid in implementing Deflate compression and 285 /* +++ deflate.h */ 287 /* deflate.h -- internal compression state 378 int last_flush; /* value of flush param for previous deflate call */ 380 /* used by deflate.c: */ 546 * See deflate.c for comments about the MIN_MATCH+1. 606 /* --- deflate.h */ 608 /* +++ deflate.c */ 610 /* deflate.c -- compress data using the deflation algorithm 648 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification" 1046 int ZEXPORT deflate (z_streamp strm, int flush) function in typeref:typename:int ZEXPORT [all...] |
/src/common/dist/zlib/ |
deflate.c | 1 /* $NetBSD: deflate.c,v 1.7 2024/09/22 19:12:27 christos Exp $ */ 3 /* deflate.c -- compress data using the deflation algorithm 41 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification". 54 #include "deflate.h" 57 " deflate 1.3.1 Copyright 1995-2024 Jean-loup Gailly and Mark Adler "; 68 finish_started, /* finish started, need only more output at next deflate */ 129 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 215 * and total number of bytes read. All deflate() input goes through 529 * Check for a valid deflate stream state. Return 0 if ok, 1 if not. 653 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); * 948 int ZEXPORT deflate(z_streamp strm, int flush) { function in typeref:typename:int ZEXPORT [all...] |
Makefile.in | 56 OBJZ = adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o 60 PIC_OBJZ = adler32.lo crc32.lo deflate.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo 161 deflate.o: $(SRCDIR)deflate.c 162 $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)deflate.c 211 deflate.lo: $(SRCDIR)deflate.c 213 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/deflate.o $(SRCDIR)deflate.c 214 -@mv objs/deflate.o $ [all...] |
zconf.h | 49 # define deflate z_deflate macro 288 /* The memory requirements for deflate are (in bytes):
|
zconf.h.in | 45 # define deflate z_deflate macro 280 /* The memory requirements for deflate are (in bytes):
|