Lines Matching defs:out
44 Decode literal, length, and distance codes and write out the resulting
61 LEN -- ran out of enough output space or enough available input
88 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */
90 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
129 ar.out = strm->next_out;
130 ar.beg = ar.out - (start - strm->avail_out);
131 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
174 strm->next_out = ar.out;
178 strm->avail_out = (unsigned)(ar.out < ar.end ?
179 PAD_AVAIL_OUT + (ar.end - ar.out) :
180 PAD_AVAIL_OUT - (ar.out - ar.end));