Lines Matching defs:overflow
369 int overflow = 0; /* number of elements with bit length too large */
374 * overflow in the case of the bit length tree).
381 if (bits > max_length) bits = max_length, overflow++;
394 if (overflow == 0) return;
396 Trace((stderr,"\nbit length overflow\n"));
404 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
406 /* The brother of the overflow item also moves one step up,
409 overflow -= 2;
410 } while (overflow > 0);
1004 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");