/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
Inflater.cs | 16 /// 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
|
/src/common/dist/zlib/contrib/delphi/ |
zlibd32.mak | 22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj 24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj 49 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ 52 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ 55 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
|
ZLib.pas | 206 {$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));
|
/src/common/dist/zlib/contrib/pascal/ |
zlibd32.mak | 22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj 24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj 49 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ 52 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ 55 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
|
zlibpas.pas | 110 function inflate(var strm: z_stream; flush: Integer): Integer; function 182 {$L inflate.obj} 208 function inflate; external; function
|
/src/sys/dev/pci/ |
viomb.c | 100 static int inflate(struct viomb_softc *); 173 "inflate") != 0) 269 * Inflate: consume some amount of physical memory. 272 inflate(struct viomb_softc *sc) function in typeref:typename:int 306 printf("%s: inflate enqueue failed.\n", 312 printf("%s: inflate enqueue failed.\n", 352 printf("%s: inflate dequeue failed, errno %d.\n", 494 * Kthread: sleeps, eventually inflate and deflate. 506 r = inflate(sc);
|
/src/common/dist/zlib/ |
inflate.c | 1 /* $NetBSD: inflate.c,v 1.8 2024/09/22 19:12:27 christos Exp $ */ 3 /* inflate.c -- zlib decompression 12 * - First version -- complete rewrite of inflate to simplify code, avoid 15 * improve code readability and style over the previous zlib inflate code 26 * - Correct filename to inffixed.h for fixed tables in inflate.c 27 * - Make hbuf[] unsigned char to match parameter type in inflate.c 29 * to avoid negation problem on Alphas (64 bit) in inflate.c 39 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 41 * buffer and bit count in inflate()--for speed when inflate_fast() not used 45 * - Move a comment on output buffer sizes from inffast.c to inflate. 592 int ZEXPORT inflate(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 170 inflate.o: $(SRCDIR)inflate.c 171 $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)inflate.c 226 inflate.lo: $(SRCDIR)inflate.c 228 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/inflate.o $(SRCDIR)inflate.c 229 -@mv objs/inflate.o $ [all...] |
zconf.h | 108 # define inflate z_inflate macro 296 The memory requirements for inflate are (in bytes) 1 << windowBits
|
zconf.h.in | 104 # define inflate z_inflate macro 288 The memory requirements for inflate are (in bytes) 1 << windowBits
|
/src/sys/net/ |
zlib.h | 69 # define inflate z_inflate macro 172 The memory requirements for inflate are (in bytes) 1 << windowBits 604 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to 611 the zlib header if present: this will be done by inflate(). (So next_in and 616 ZEXTERN int ZEXPORT inflate(z_streamp, int); 618 inflate decompresses as much data as possible, and stops when the input 623 The detailed semantics are as follows. inflate performs one or both of the 629 will resume at this point for the next call of inflate(). 632 accordingly. inflate() provides as much output as possible, until there 636 Before the call of inflate(), the application should ensure that at leas [all...] |
zlib.c | 32 #define inflate inflate_ppp /* FreeBSD already has an inflate :-( */ macro 1985 * reconstructed from the lengths in the inflate process, as described 2495 s->last_eob_len = 8; /* enough lookahead for inflate */ 2979 * Send one empty static block to give enough lookahead for inflate. 2981 * The current inflate code requires 9 bits of lookahead. If the 2983 * on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode 3289 s->last_eob_len = 8; /* enough lookahead for inflate */ 3307 /* +++ inflate.c */ 3309 /* inflate.c -- zlib interface to inflate module 3504 int ZEXPORT inflate(z_streamp z, int f) function in typeref:typename:int ZEXPORT [all...] |