Lines Matching defs:in

3  * For conditions of distribution and use, see copyright notice in zlib.h
10 Fix return value for in()
19 1.5 9 Feb 2008 Avoid warning in latest version of gcc
21 1.7 12 Aug 2012 Update for z_const usage in zlib 1.2.8
27 decompresses the data in the named gzip files. If no arguments are given,
28 gun will decompress from stdin to stdout. The names must end in .gz, -gz,
47 encountered in an input file, it is the last stream in that file.
50 file are maintained in the final uncompressed file, to the extent that the
79 /* structure for infback() to pass to input function in() -- it maintains the
89 local unsigned in(void *in_desc, z_const unsigned char **buf)
116 bytes output, both for checking against the gzip trailer. (The length in
155 #define NEXT() (have ? 0 : (have = in(indp, &next)), \
168 /* throw out what's left in the current bits byte buffer (this is a vestigial
204 unsigned chunk; /* bytes left in current chunk */
205 int left; /* bits left in rem */
212 unsigned end; /* last valid entry in prefix/suffix tables */
217 unsigned outcnt; /* bytes in output buffer */
260 chunk = bits - 2; /* 7 bytes left in this chunk */
291 if (NEXT() == -1) /* can't end in middle of code */
316 empirically derived, and not checked in the original uncompress
318 removed. Leaving this check in greatly improves gun's ability
329 /* walk through linked list to generate output in reverse order */
349 /* write output in forward order */
373 of a series of gzip streams, in which case all of them will be decompressed
397 have = 0; /* no input data read in yet */
475 ret = inflateBack(strm, in, indp, out, &outd);
595 fprintf(stderr, "gun warning: trailing garbage ignored in %s\n",