Lines Matching defs:from
95 fixed code decoding. This returns fixed tables from inffixed.h.
116 upon return from inflate(), and since all distances after the first 32K of
195 /* Restore state from registers in inflate() */
213 /* Get a byte of input into the bit accumulator, or return from inflate()
224 not enough available input to do that, then return from inflate(). */
235 /* Remove n bits from the bit accumulator */
276 where NEEDBITS(n) either returns from inflate() if there isn't enough
341 unsigned char *from; /* where to copy match bytes from */
676 if (state->offset > copy) { /* copy from window */
680 from = state->window + (state->wsize - copy);
683 from = state->window + (state->write - copy);
686 else { /* copy from output */
687 from = put - state->offset;
694 *put++ = *from++;
738 Return from inflate(), updating the total counts and the check value.