Home | History | Annotate | Download | only in examples

Lines Matching defs:from

8   arising from the use of this software.
20 3. This notice may not be removed or altered from any source distribution.
47 gzappend takes a gzip file and appends to it, compressing files from the
48 command line or data from stdin. The gzip file is written to directly, to
53 zlib 1.2.x's inflate() function. This option returns from inflate() at each
71 data from the gzip file to initialize the dictionary. If the total
74 last bits from the original deflate stream. From here on, the data to
127 unsigned char *start, *last, *to, *from;
156 start = from = list + cycles; /* start index is arbitrary */
157 tmp = *from; /* save entry to be overwritten */
159 to = from; /* next step in cycle */
160 from += rot; /* go right rot positions */
161 if (from > last) from -= len; /* (pointer better not wrap) */
162 if (from == start) break; /* all but one shifted */
163 *to = *from; /* shift left */
191 /* read from file in, exit if end-of-file */
222 /* read a four-byte unsigned integer, little-endian, from in */
361 /* if window wrapped, build dictionary from window by rotating */
463 append the specified files, or append the data from stdin if no other file
496 /* append files on command line, or from stdin if none */