Lines Matching defs:out
16 Decode literal, length, and distance codes and write out the resulting
33 LEN -- ran out of enough output space or enough available input
54 unsigned char FAR *out; /* local strm->next_out */
56 unsigned char FAR *end; /* while out < end, enough space available */
81 out = strm->next_out;
82 beg = out - (start - strm->avail_out);
83 end = out + (strm->avail_out - 257);
117 *out++ = (unsigned char)(here->val);
166 op = (unsigned)(out - beg); /* max distance in output */
179 *out++ = 0;
185 *out++ = 0;
188 from = out - dist;
190 *out++ = *from++;
202 *out++ = *from++;
204 from = out - dist; /* rest from output */
213 *out++ = *from++;
220 *out++ = *from++;
222 from = out - dist; /* rest from output */
231 *out++ = *from++;
233 from = out - dist; /* rest from output */
237 *out++ = *from++;
238 *out++ = *from++;
239 *out++ = *from++;
243 *out++ = *from++;
245 *out++ = *from++;
249 from = out - dist; /* copy direct from output */
251 *out++ = *from++;
252 *out++ = *from++;
253 *out++ = *from++;
257 *out++ = *from++;
259 *out++ = *from++;
287 } while (in < last && out < end);
297 strm->next_out = out;
299 strm->avail_out = (unsigned)(out < end ?
300 257 + (end - out) : 257 - (out - end));
307 inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):