Home | History | Annotate | Download | only in examples

Lines Matching defs:last

52    block boundary to facilitate locating and modifying the last block bit at
55 number of unusued bits in the last input byte used. gzappend will not work
59 the last 32K of uncompressed data, and noting the location of the last block
60 bit and the number of unused bits in the last byte of the compressed data.
64 Then the last block bit is cleared by seeking back in the file and rewriting
65 the byte that contains it. Seeking forward, the last byte of the compressed
68 A deflate process is initialized, using the last 32K of the uncompressed
72 last bits from the original deflate stream. From here on, the data to
125 unsigned char *start, *last, *to, *from;
132 /* pointer to last entry in list */
133 last = list + (len - 1);
139 *last = tmp;
145 tmp = *last;
159 if (from > last) from -= len; /* (pointer better not wrap) */
352 /* clear last block bit */
384 /* append file "name" to gzip file gd using deflate stream strm -- if last
386 local void gztack(char *name, int gd, z_stream *strm, int last)
424 ret = deflate(strm, last && len == 0 ? Z_FINISH : Z_NO_FLUSH);
434 /* write trailer after last entry */
435 if (last) {