Lines Matching refs:count

186         ush  freq;       /* frequency count */
354 * - I can't count above 4
1488 /* repeat previous bit length 3-6 times (2 bits of repeat count) */
1491 /* repeat a zero length 3-10 times (3 bits of repeat count) */
1494 /* repeat a zero length 11-138 times (7 bits of repeat count) */
2073 int count = 0; /* repeat count of the current code */
2074 int max_count = 7; /* max repeat count */
2075 int min_count = 4; /* min repeat count */
2082 if (++count < max_count && curlen == nextlen) {
2084 } else if (count < min_count) {
2085 s->bl_tree[curlen].Freq += count;
2089 } else if (count <= 10) {
2094 count = 0; prevlen = curlen;
2118 int count = 0; /* repeat count of the current code */
2119 int max_count = 7; /* max repeat count */
2120 int min_count = 4; /* min repeat count */
2127 if (++count < max_count && curlen == nextlen) {
2129 } else if (count < min_count) {
2130 do { send_code(s, curlen, s->bl_tree); } while (--count != 0);
2134 send_code(s, curlen, s->bl_tree); count--;
2136 Assert(count >= 3 && count <= 6, " 3_6?");
2137 send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
2139 } else if (count <= 10) {
2140 send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
2143 send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
2145 count = 0; prevlen = curlen;
2758 uInt marker; /* if BAD, inflateSync's marker bytes count */
3708 uInt c[BMAX+1]; /* bit length count table */
3763 /* Adjust last length count to fill out codes, if needed */
4479 *q++ = *r++; c--; /* minimum count is three, */