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

Lines Matching refs:overflow

505     int overflow = 0;   /* number of elements with bit length too large */
510 * overflow in the case of the bit length tree).
517 if (bits > max_length) bits = max_length, overflow++;
530 if (overflow == 0) return;
532 Trace((stderr,"\nbit length overflow\n"));
540 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
542 /* The brother of the overflow item also moves one step up,
545 overflow -= 2;
546 } while (overflow > 0);
1112 "pendingBuf overflow");