HomeSort by: relevance | last modified time | path
    Searched refs:inflate (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/distrib/utils/zcat/
Makefile 18 SRCS= zcat.c gzread.c gzclose.c gzlib.c inflate.c
29 COPTS.inflate.c+= ${CC_WNO_IMPLICIT_FALLTHROUGH}
  /src/sys/lib/libz/
Makefile 14 inflate.c inftrees.c trees.c uncompr.c
15 LIBZHDRS= deflate.h inffast.h inffixed.h inflate.h inftrees.h \
  /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 \
example.pas 226 * Test inflate with small buffers
252 err := inflate(d_stream, Z_NO_FLUSH);
255 CHECK_ERR(err, 'inflate');
262 EXIT_ERR('bad inflate')
264 WriteLn('inflate(): ', PChar(uncompr));
321 * Test inflate with large buffers
345 err := inflate(d_stream, Z_NO_FLUSH);
348 CHECK_ERR(err, 'large inflate');
356 WriteLn('bad large inflate: ', d_stream.total_out);
427 inflate(d_stream, Z_NO_FLUSH)
    [all...]
zlibpas.pas 110 function inflate(var strm: z_stream; flush: Integer): Integer; function
182 {$L inflate.obj}
208 function inflate; external; function
  /src/common/dist/zlib/watcom/
watcom_l.mak 9 infback.c inffast.c inflate.c inftrees.c &
14 infback.obj inffast.obj inflate.obj inftrees.obj &
31 wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
watcom_f.mak 9 infback.c inffast.c inflate.c inftrees.c &
14 infback.obj inffast.obj inflate.obj inftrees.obj &
31 wlib -b -c $(ZLIB_LIB) -+inffast.obj -+inflate.obj -+inftrees.obj
  /src/lib/libz/
Makefile 16 inflate.c inftrees.c trees.c uncompr.c zutil.c gzwrite.c \
33 COPTS.inflate.c+= ${CC_WNO_IMPLICIT_FALLTHROUGH}
  /src/common/dist/zlib/
uncompr.c 68 err = inflate(&stream, Z_NO_FLUSH);
make_vms.com 196 infback.c zutil.h inftrees.h inflate.h inffast.h inffixed.h
199 $ CALL MAKE inflate.OBJ "CC ''CCOPT' inflate" -
200 inflate.c zutil.h zlib.h zconf.h infblock.h
431 deflate.obj, trees.obj, zutil.obj, inflate.obj, \
466 inflate.obj : inflate.c zutil.h zlib.h zconf.h
472 infback.obj : infback.c zutil.h inftrees.h inflate.h inffast.h inffixed.h
743 $ module3 = "gzseek#gztell#inflate#inflateEnd#inflateInit_#inflateSetDictionary"
  /src/tests/crypto/opencrypto/
h_comp_zlib.c 83 res = inflate(&z, Z_SYNC_FLUSH);
86 errx(1, "inflate: %d", res);
h_comp_zlib_rnd.c 87 res = inflate(&z, Z_SYNC_FLUSH);
90 errx(1, "inflate: %d", res);
  /src/common/dist/zlib/test/
example.c 199 * Test inflate() with small buffers
221 err = inflate(&d_stream, Z_NO_FLUSH);
223 CHECK_ERR(err, "inflate");
230 fprintf(stderr, "bad inflate\n");
233 printf("inflate(): %s\n", (char *)uncompr);
291 * Test inflate() with large buffers
313 err = inflate(&d_stream, Z_NO_FLUSH);
315 CHECK_ERR(err, "large inflate");
322 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
387 err = inflate(&d_stream, Z_NO_FLUSH)
    [all...]
infcover.c 1 /* infcover.c -- test zlib's inflate routines with full code coverage
18 #include "inflate.h"
236 /* -- inflate test routines -- */
275 /* generic inflate() run, where hex is the hexadecimal input data, what is the
277 inflate() on each call, or zero to feed it all, win is the window bits
279 is the error code expected from the first inflate() call (the second
280 inflate() call is expected to return Z_STREAM_END). If win is 47, then
283 inflate() is run until all of the input data is consumed. */
320 ret = inflate(&strm, Z_NO_FLUSH); assert(err == 9 || ret == err);
333 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_BUF_ERROR)
    [all...]
  /src/common/dist/zlib/examples/
zran.c 41 // inflate is initialized with those bits and the 32K of uncompressed data, and
134 z_stream strm = {0}; // inflate engine (gets fired up later)
180 // We skip the inflate() call at the start of raw deflate data in
185 // Inflate and update the number of uncompressed bytes.
187 ret = inflate(&strm, Z_BLOCK);
210 // inflate state to read another gzip member. On success, this will
272 // Then feed that to inflate(). This does what inflatePrime() does, except that
275 // value from inflate() is returned.
291 // Build an input buffer for inflate that is a multiple of eight bits in
310 // Deliver the input to inflate(). There is no output space provided, bu
    [all...]
fitblk.c 94 return last deflate() return value, or Z_MEM_ERROR if inflate()
106 ret = inflate(inf, Z_NO_FLUSH);
134 z_stream def, inf; /* zlib deflate and inflate states */
zpipe.c 1 /* zpipe.c: example of proper use of zlib's inflate() and deflate()
8 Use switch statement for inflate() return values
100 /* allocate inflate state */
121 /* run inflate() on input until output buffer not full */
125 ret = inflate(&strm, Z_NO_FLUSH);
142 /* done when inflate() says it's done */
  /src/sys/kern/
kern_ctf.c 224 if ((ret = inflate(&zs, Z_FINISH)) != Z_STREAM_END) {
225 printf("%s(%d): zlib inflate returned %d\n", __func__, __LINE__, ret);
  /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...]
  /src/sys/opencrypto/
deflate.c 127 error = decomp ? inflate(&zbuf, Z_SYNC_FLUSH) :
321 DPRINTF("pre: %s in:%u out:%u\n", decomp ? "deflate()" : "inflate()",
323 error = decomp ? inflate(&zbuf, Z_SYNC_FLUSH) :
325 DPRINTF("post: %s in:%u out:%u\n", decomp ? "deflate()" : "inflate()",
  /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
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/contrib/testzlib/
testzlib.c 250 ret=inflate(&zcpr,Z_SYNC_FLUSH);

Completed in 31 milliseconds

1 2