Lines Matching defs:end
18 available, an end-of-block is encountered, or a data error is encountered.
34 TYPE -- reached end of block code, inflate() to interpret next block
60 unsigned char FAR *end; /* while out < end, enough space available */
87 end = out + (strm->avail_out - (INFLATE_FAST_MIN_OUTPUT - 1));
102 /* decode literals and length/distances until end-of-block or not enough
214 if (op < len) { /* some from end of window */
281 else if (op & 32) { /* end-of-block */
282 Tracevv((stderr, "inflate: end of block\n"));
291 } while (in < last && out < end);
305 strm->avail_out = (unsigned)(out < end ?
306 (INFLATE_FAST_MIN_OUTPUT - 1) + (end - out) :
307 (INFLATE_FAST_MIN_OUTPUT - 1) - (out - end));