Lines Matching defs:from
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
150 /* extract wrap request from windowBits parameter */
246 fixed code decoding. Normally this returns fixed tables from inffixed.h.
366 upon return from inflate(), and since all distances after the first 32K of
384 /* Copies from the overflow portion of this buffer are undefined and
466 /* Restore state from registers in inflate() */
484 /* Get a byte of input into the bit accumulator, or return from inflate()
495 not enough available input to do that, then return from inflate(). */
506 /* Remove n bits from the bit accumulator */
547 where NEEDBITS(n) either returns from inflate() if there isn't enough
611 unsigned char FAR *from; /* where to copy match bytes from */
1148 if (state->offset > copy) { /* copy from window */
1172 from = state->window + (state->wsize - copy);
1175 from = state->window + (state->wnext - copy);
1178 put = chunkcopy_safe(put, from, copy, put + left);
1180 else { /* copy from output */
1249 Return from inflate(), updating the total counts and the check value.
1252 Note: a memory error from inflate() is non-recoverable.