Lines Matching refs: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
55 unsigned char FAR *out; /* local strm->next_out */
57 unsigned char FAR *end; /* while out < end, enough space available */
82 out = strm->next_out;
83 beg = out - (start - strm->avail_out);
84 end = out + (strm->avail_out - 257);
118 *out++ = (unsigned char)(here->val);
167 op = (unsigned)(out - beg); /* max distance in output */
180 *out++ = 0;
186 *out++ = 0;
189 from = out - dist;
191 *out++ = *from++;
203 *out++ = *from++;
205 from = out - dist; /* rest from output */
214 *out++ = *from++;
221 *out++ = *from++;
223 from = out - dist; /* rest from output */
232 *out++ = *from++;
234 from = out - dist; /* rest from output */
238 *out++ = *from++;
239 *out++ = *from++;
240 *out++ = *from++;
244 *out++ = *from++;
246 *out++ = *from++;
250 from = out - dist; /* copy direct from output */
252 *out++ = *from++;
253 *out++ = *from++;
254 *out++ = *from++;
258 *out++ = *from++;
260 *out++ = *from++;
288 } while (in < last && out < end);
298 strm->next_out = out;
300 strm->avail_out = (unsigned)(out < end ?
301 257 + (end - out) : 257 - (out - end));
308 inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):