Home | History | Annotate | Download | only in zlib-1.2.8

Lines Matching defs: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)(here.val);
147 len += (unsigned)hold & ((1U << op) - 1);
151 Tracevv((stderr, "inflate: length %u\n", len));
197 if (len <= op - whave) {
200 } while (--len);
203 len -= op - whave;
211 } while (--len);
219 if (op < len) { /* some from window */
220 len -= op;
230 if (op < len) { /* some from end of window */
231 len -= op;
236 if (wnext < len) { /* some from start of window */
238 len -= op;
248 if (op < len) { /* some from window */
249 len -= op;
256 while (len > 2) {
260 len -= 3;
262 if (len) {
264 if (len > 1)
274 len -= 3;
275 } while (len > 2);
276 if (len) {
278 if (len > 1)
310 len = bits >> 3;
311 in -= len;
312 bits -= len << 3;
337 - Moving len -= 3 statement into middle of loop