Home | History | Annotate | Download | only in src

Lines Matching defs:from

61     unsigned dmax;              /* maximum distance from zlib header */
78 unsigned char FAR *from; /* where to copy match from */
170 if (dist > op) { /* see if copy from window */
191 from = out - dist;
193 *out++ = *from++;
199 from = window;
201 from += wsize - op;
202 if (op < len) { /* some from window */
205 *out++ = *from++;
207 from = out - dist; /* rest from output */
211 from += wsize + wnext - op;
213 if (op < len) { /* some from end of window */
216 *out++ = *from++;
218 from = window;
219 if (wnext < len) { /* some from start of window */
223 *out++ = *from++;
225 from = out - dist; /* rest from output */
230 from += wnext - op;
231 if (op < len) { /* some from window */
234 *out++ = *from++;
236 from = out - dist; /* rest from output */
240 *out++ = *from++;
241 *out++ = *from++;
242 *out++ = *from++;
246 *out++ = *from++;
248 *out++ = *from++;
252 from = out - dist; /* copy direct from output */
254 *out++ = *from++;
255 *out++ = *from++;
256 *out++ = *from++;
260 *out++ = *from++;
262 *out++ = *from++;