Home | History | Annotate | Download | only in zlib

Lines Matching full:len

42         state->mode == LEN
50 LEN -- ran out of enough output space or enough available input
93 unsigned len; /* match length, unused bytes */
140 len = (unsigned)(this.val);
147 len += (unsigned)hold & ((1U << op) - 1);
151 Tracevv((stderr, "inflate: length %u\n", len));
197 if (op < len) { /* some from window */
198 len -= op;
208 if (op < len) { /* some from end of window */
209 len -= op;
214 if (write < len) { /* some from start of window */
216 len -= op;
226 if (op < len) { /* some from window */
227 len -= op;
234 while (len > 2) {
238 len -= 3;
240 if (len) {
242 if (len > 1)
252 len -= 3;
253 } while (len > 2);
254 if (len) {
256 if (len > 1)
288 len = bits >> 3;
289 in -= len;
290 bits -= len << 3;
315 - Moving len -= 3 statement into middle of loop