Home | History | Annotate | Download | only in src

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
168 /* extract wrap request from windowBits parameter */
270 fixed code decoding. Normally this returns fixed tables from inffixed.h.
392 upon return from inflate(), and since all distances after the first 32K of
486 /* Restore state from registers in inflate() */
504 from inflate()
515 not enough available input to do that, then return from inflate(). */
526 /* Remove n bits from the bit accumulator */
567 where NEEDBITS(n) either returns from inflate() if there isn't enough
634 unsigned char FAR *from; /* where to copy match bytes from */
1149 if (state->offset > copy) { /* copy from window */
1173 from = state->window + (state->wsize - copy);
1176 from = state->window + (state->wnext - copy);
1179 else { /* copy from output */
1180 from = put - state->offset;
1187 *put++ = *from++;
1248 Return from inflate(), updating the total counts and the check value.
1251 Note: a memory error from inflate() is non-recoverable.