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
26 decompresses the data in the named gzip files. If no arguments are given,
27 gun will decompress from stdin to stdout. The names must end in .gz, -gz,
46 encountered in an input file, it is the last stream in that file.
49 file are maintained in the final uncompressed file, to the extent that the
78 /* structure for infback() to pass to input function in() -- it maintains the
88 local unsigned in(void *in_desc, unsigned char **buf)
115 bytes output, both for checking against the gzip trailer. (The length in
154 #define NEXT() (have ? 0 : (have = in(indp, &next)), \
167 /* throw out what's left in the current bits byte buffer (this is a vestigial
203 unsigned chunk; /* bytes left in current chunk */
204 int left; /* bits left in rem */
211 unsigned end; /* last valid entry in prefix/suffix tables */
216 unsigned outcnt; /* bytes in output buffer */
259 chunk = bits - 2; /* 7 bytes left in this chunk */
290 if (NEXT() == -1) /* can't end in middle of code */
315 empirically derived, and not checked in the original uncompress
317 removed. Leaving this check in greatly improves gun's ability
328 /* walk through linked list to generate output in reverse order */
348 /* write output in forward order */
372 of a series of gzip streams, in which case all of them will be decompressed
396 have = 0; /* no input data read in yet */
474 ret = inflateBack(strm, in, indp, out, &outd);
594 fprintf(stderr, "gun warning: trailing garbage ignored in %s\n",