Lines Matching refs:end

398 /* Minimum amount of lookahead, except at the end of the input file.
487 /* Minimum amount of lookahead, except at the end of the input file.
1000 * necessary to put more guard bytes at the end of the window, or
1114 unsigned more; /* Amount of free space at the end of the window. */
1201 * Flush the current block, with given end-of-file flag.
1202 * IN assertion: strstart is set to the end of the current match.
1237 * at the end of the input file. We need MAX_MATCH bytes
1332 * at the end of the input file. We need MAX_MATCH bytes
1389 /* Insert in hash table all strings up to the end of the match.
1485 /* end of block literal code */
2797 Trace((stderr, "inflate: end\n"));
3052 TYPE, /* get type bits (3, including end bit) */
3087 Bytef *end; /* one byte after sliding window */
3110 #define WAVAIL (q<s->read?s->read-q-1:s->end-q)
3112 #define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=WAVAIL;}}
3180 end-of-block. Note however that the static length tree defines
3248 s->end = s->window + w;
3268 uInt m; /* bytes to end of window or read pointer */
3350 Tracev((stderr, "inflate: stored end, %lu total out\n",
3352 (s->end - s->read) + (q - s->window))));
3486 Tracev((stderr, "inflate: codes end, %lu total out\n",
3488 (s->end - s->read) + (q - s->window))));
3526 ZFREE(z, s->window, s->end - s->window);
3550 uInt m; /* bytes to end of window or read pointer */
3564 /* is there room until end of buffer? */
3576 if (q == s->end) {
3587 * At the end of a Deflate-compressed PPP packet, we expect to have seen
3676 than five bits, flat. The optimum values for speed end up being
3860 r.exop = (Byte)(*p < 256 ? 0 : 32 + 64); /* 256 is end-of-block */
4156 uInt m; /* bytes to end of window or read pointer */
4211 if (e & 32) /* end of block */
4213 Tracevv((stderr, "inflate: end of block\n"));
4263 s->end - (c->sub.copy.dist - (q - s->window)) :
4268 f = s->end - (c->sub.copy.dist - (q - s->window));
4274 if (f == s->end)
4330 /* compute number of bytes to copy as far as end of window */
4331 n = (uInt)((q <= s->write ? s->write : s->end) - q);
4343 /* copy as far as end of window */
4351 if (q == s->end)
4355 if (s->write == s->end)
4422 uInt m; /* bytes to end of window or read pointer */
4484 e = d - (q - s->window); /* bytes from offset to end */
4485 r = s->end - e; /* pointer to offset */
4488 c -= e; /* copy to end of window */
4527 Tracevv((stderr, "inflate: * end of block\n"));
4560 "stream end", /* Z_STREAM_END 1 */