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
149 /* extract wrap request from windowBits parameter */
245 fixed code decoding. Normally this returns fixed tables from inffixed.h.
365 upon return from inflate(), and since all distances after the first 32K of
455 /* Restore state from registers in inflate() */
473 /* Get a byte of input into the bit accumulator, or return from inflate()
484 not enough available input to do that, then return from inflate(). */
495 /* Remove n bits from the bit accumulator */
536 where NEEDBITS(n) either returns from inflate() if there isn't enough
600 unsigned char FAR *from; /* where to copy match bytes from */
1137 if (state->offset > copy) { /* copy from window */
1161 from = state->window + (state->wsize - copy);
1164 from = state->window + (state->wnext - copy);
1167 else { /* copy from output */
1168 from = put - state->offset;
1175 *put++ = *from++;
1239 Return from inflate(), updating the total counts and the check value.
1242 Note: a memory error from inflate() is non-recoverable.