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
58 unsigned char FAR *out; /* local strm->next_out */
60 unsigned char FAR *end; /* while out < end, enough space available */
85 out = strm->next_out;
86 beg = out - (start - strm->avail_out);
87 end = out + (strm->avail_out - (INFLATE_FAST_MIN_OUTPUT - 1));
121 *out++ = (unsigned char)(here->val);
170 op = (unsigned)(out - beg); /* max distance in output */
183 *out++ = 0;
189 *out++ = 0;
192 from = out - dist;
194 *out++ = *from++;
206 *out++ = *from++;
208 from = out - dist; /* rest from output */
217 *out++ = *from++;
224 *out++ = *from++;
226 from = out - dist; /* rest from output */
235 *out++ = *from++;
237 from = out - dist; /* rest from output */
241 *out++ = *from++;
242 *out++ = *from++;
243 *out++ = *from++;
247 *out++ = *from++;
249 *out++ = *from++;
253 from = out - dist; /* copy direct from output */
255 *out++ = *from++;
256 *out++ = *from++;
257 *out++ = *from++;
261 *out++ = *from++;
263 *out++ = *from++;
291 } while (in < last && out < end);
301 strm->next_out = out;
305 strm->avail_out = (unsigned)(out < end ?
306 (INFLATE_FAST_MIN_OUTPUT - 1) + (end - out) :
307 (INFLATE_FAST_MIN_OUTPUT - 1) - (out - end));
314 inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):