Lines Matching refs:end

573  * Minimum amount of lookahead, except at the end of the input file.
748 * Minimum amount of lookahead, except at the end of the input file.
1499 * Do not look for matches beyond the end of the input. This
1534 * end of the window, or to check more often for
1726 unsigned more; /* Amount of free space at the end of the window. */
1838 * Flush the current block, with given end-of-file flag.
1839 * IN assertion: strstart is set to the end of the current match.
1950 * except at the end of the input file. We need
2073 * except at the end of the input file. We need
2152 * end of the match. strstart-1 and strstart
2259 /* end of block literal code */
3659 Trace((stderr, "inflate: end\n"));
4001 * Returns true if inflate is currently at the end of a block
4005 * empty stored block. When decompressing, PPP checks that at the end
4150 TYPE, /* get type bits (3, including end bit) */
4189 Bytef *end; /* one byte after sliding window */
4213 #define WAVAIL (uInt)(q < s->read ? s->read-q-1 : s->end-q)
4215 #define WWRAP {if (q == s->end && s->read != s->window) {q = s->window; \
4266 * end-of-block. Note however that the static length tree defines
4342 s->end = s->window + w;
4363 uInt m; /* bytes to end of window or read pointer */
4449 "inflate: stored end, %lu total out\n",
4451 (s->end - s->read) + (q - s->window))));
4594 Tracev((stderr, "inflate: codes end, %lu total out\n",
4596 (s->end - s->read) + (q - s->window))));
4647 Assert(s->window + n <= s->end, "set dict");
4653 * Returns true if inflate is currently at the end of a block
4683 uInt m; /* bytes to end of window or read pointer */
4698 /* is there room until end of buffer? */
4710 if (q == s->end) {
4721 * At the end of a Deflate-compressed PPP packet, we expect to have seen
4820 * less than five bits, flat. The optimum values for speed end up
5028 /* 256 is end-of-block */
5340 uInt m; /* bytes to end of window or read pointer */
5399 if (e & 32) { /* end of block */
5401 "inflate: end of block\n"));
5455 s->end - (c->sub.copy.dist - (q - s->window)) :
5460 f = s->end - (c->sub.copy.dist -
5467 if (f == s->end)
5556 /* compute number of bytes to copy as far as end of window */
5557 n = (uInt)((q <= s->write ? s->write : s->end) - q);
5569 /* copy as far as end of window */
5577 if (q == s->end)
5581 if (s->write == s->end)
5663 uInt m; /* bytes to end of window or read pointer */
5741 /* bytes from offset to end */
5745 r = s->end - e;
5748 /* copy to end of window */
5798 "inflate: * end of block\n"));
5844 "stream end", /* Z_STREAM_END 1 */