Lines Matching defs:last
54 block boundary to facilitate locating and modifying the last block bit at
57 number of unusued bits in the last input byte used. gzappend will not work
61 the last 32K of uncompressed data, and noting the location of the last block
62 bit and the number of unused bits in the last byte of the compressed data.
66 Then the last block bit is cleared by seeking back in the file and rewriting
67 the byte that contains it. Seeking forward, the last byte of the compressed
70 A deflate process is initialized, using the last 32K of the uncompressed
74 last bits from the original deflate stream. From here on, the data to
127 unsigned char *start, *last, *to, *from;
134 /* pointer to last entry in list */
135 last = list + (len - 1);
141 *last = tmp;
147 tmp = *last;
161 if (from > last) from -= len; /* (pointer better not wrap) */
354 /* clear last block bit */
386 /* append file "name" to gzip file gd using deflate stream strm -- if last
388 local void gztack(char *name, int gd, z_stream *strm, int last)
426 ret = deflate(strm, last && len == 0 ? Z_FINISH : Z_NO_FLUSH);
436 /* write trailer after last entry */
437 if (last) {