Home | History | Annotate | Download | only in zlib

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
141 /* extract wrap request from windowBits parameter */
232 fixed code decoding. Normally this returns fixed tables from inffixed.h.
354 upon return from inflate(), and since all distances after the first 32K of
448 /* Restore state from registers in inflate() */
466 /* Get a byte of input into the bit accumulator, or return from inflate()
477 not enough available input to do that, then return from inflate(). */
488 /* Remove n bits from the bit accumulator */
534 where NEEDBITS(n) either returns from inflate() if there isn't enough
601 unsigned char FAR *from; /* where to copy match bytes from */
1111 if (state->offset > copy) { /* copy from window */
1135 from = state->window + (state->wsize - copy);
1138 from = state->window + (state->wnext - copy);
1141 else { /* copy from output */
1142 from = put - state->offset;
1149 *put++ = *from++;
1210 Return from inflate(), updating the total counts and the check value.
1213 Note: a memory error from inflate() is non-recoverable.