Lines Matching defs:out
33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0;
205 PUP(out) = 0;
208 from = out - dist;
210 PUP(out) = PUP(from);
222 PUP(out) = PUP(from);
224 from = out - dist; /* rest from output */
233 PUP(out) = PUP(from);
240 PUP(out) = PUP(from);
242 from = out - dist; /* rest from output */
251 PUP(out) = PUP(from);
253 from = out - dist; /* rest from output */
257 PUP(out) = PUP(from);
258 PUP(out) = PUP(from);
259 PUP(out) = PUP(from);
263 PUP(out) = PUP(from);
265 PUP(out) = PUP(from);
269 from = out - dist; /* copy direct from output */
271 PUP(out) = PUP(from);
272 PUP(out) = PUP(from);
273 PUP(out) = PUP(from);
277 PUP(out) = PUP(from);
279 PUP(out) = PUP(from);
307 } while (in < last && out < end);
317 strm->next_out = out + OFF;
319 strm->avail_out = (unsigned)(out < end ?
320 257 + (end - out) : 257 - (out - end));
327 inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):