Lines Matching defs:end
20 available, an end-of-block is encountered, or a data error is encountered.
41 TYPE -- reached end of block code, inflate() to interpret next block
81 unsigned char FAR *end; /* while out < end, enough space available */
109 end = out + (strm->avail_out - (INFLATE_FAST_MIN_OUTPUT - 1));
135 /* decode literals and length/distances until end-of-block or not enough
274 if (op < len) { /* some from end of window */
289 towards the dangerous end of the output buffer is
294 the main copy is near the end.
329 else if (op & 32) { /* end-of-block */
330 Tracevv((stderr, "inflate: end of block\n"));
339 } while (in < last && out < end);
353 strm->avail_out = (unsigned)(out < end ?
354 (INFLATE_FAST_MIN_OUTPUT - 1) + (end - out) :
355 (INFLATE_FAST_MIN_OUTPUT - 1) - (out - end));