Home | History | Annotate | Download | only in zlib_v128

Lines Matching defs:overflow

503     int overflow = 0;   /* number of elements with bit length too large */
508 * overflow in the case of the bit length tree).
515 if (bits > max_length) bits = max_length, overflow++;
528 if (overflow == 0) return;
530 Trace((stderr,"\nbit length overflow\n"));
538 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
540 /* The brother of the overflow item also moves one step up,
543 overflow -= 2;
544 } while (overflow > 0);
1100 "pendingBuf overflow");