Searched refs:inflate (Results 1 - 9 of 9) sorted by relevance

/ast/src/lib/libz/
H A DMakefile15 crc32.h deflate.h inffast.h inffixed.h inflate.h inftrees.h trees.h \
17 inflate.c inftrees.c trees.c uncompr.c zutil.c \
H A Duncompr.c50 err = inflate(&stream, Z_FINISH);
H A Dexample.c205 * Test inflate() with small buffers
229 err = inflate(&d_stream, Z_NO_FLUSH);
231 CHECK_ERR(err, "inflate");
238 fprintf(stderr, "bad inflate\n");
241 printf("inflate(): %s\n", (char *)uncompr);
301 * Test inflate() with large buffers
325 err = inflate(&d_stream, Z_NO_FLUSH);
327 CHECK_ERR(err, "large inflate");
334 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
404 inflate(
[all...]
H A Dzconf.h37 # define inflate z_inflate macro
174 The memory requirements for inflate are (in bytes) 1 << windowBits
H A Dzlib.h168 /* Allowed flush values; see deflate() and inflate() below for details */
200 /* Possible values of the data_type field (though see inflate()) */
351 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
358 the zlib header if present: this will be done by inflate(). (So next_in and
363 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
365 inflate decompresses as much data as possible, and stops when the input
370 The detailed semantics are as follows. inflate performs one or both of the
376 will resume at this point for the next call of inflate().
379 accordingly. inflate() provides as much output as possible, until there
383 Before the call of inflate(), th
[all...]
H A Dgzio.c81 z_off_t in; /* bytes into deflate or inflate */
82 z_off_t out; /* bytes out of deflate or inflate */
209 * Note that in this case inflate *requires* an extra "dummy" byte
554 s->z_err = inflate(&(s->stream), Z_NO_FLUSH);
H A Dinflate.c0 /* inflate.c -- zlib decompression
10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
53 * source file infback.c to provide a call-back interface to inflate fo
554 int ZEXPORT inflate(strm, flush) function
[all...]
/ast/src/lib/libpz/
H A Dpzsplit.c478 * inflate
482 inflate(Pz_t* pz, Sfio_t* op) function
703 r = inflate(pz, op);
/ast/src/cmd/INIT/
H A Dratz.c291 The memory requirements for inflate are (in bytes) 1 << windowBits
536 /* Allowed flush values; see deflate() and inflate() below for details */
568 /* Possible values of the data_type field (though see inflate()) */
1580 /* Possible inflate modes between inflate() calls */
1594 TYPEDO, /* i: same, but skip check to exit inflate on new block */
1610 MEM, /* got an inflate() memory error -- remain here until reset */
1611 SYNC /* looking for synchronization bytes to restart inflate() */
1637 /* state maintained between inflate() calls. Approximately 7K bytes. */
1639 inflate_mode mode; /* current inflate mod
2773 int ZEXPORT inflate(strm, flush) function
[all...]

Completed in 43 milliseconds