Lines Matching defs:overflow
501 int overflow = 0; /* number of elements with bit length too large */
506 * overflow in the case of the bit length tree).
513 if (bits > max_length) bits = max_length, overflow++;
526 if (overflow == 0) return;
528 Tracev((stderr,"\nbit length overflow\n"));
536 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
538 /* The brother of the overflow item also moves one step up,
541 overflow -= 2;
542 } while (overflow > 0);
1083 Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");