Lines Matching defs:zerun
8586 int zerun = 1;
8588 while ((im < iM) && (zerun < LONGEST_LONG_RUN)) {
8591 zerun++;
8594 if (zerun >= 2) {
8595 if (zerun >= SHORTEST_LONG_RUN) {
8597 outputBits(8, zerun - SHORTEST_LONG_RUN, c, lc, p);
8599 outputBits(6, SHORT_ZEROCODE_RUN + zerun - 2, c, lc, p);
8642 int zerun = getBits(8, c, lc, p) + SHORTEST_LONG_RUN;
8644 if (im + zerun > iM + 1) {
8648 while (zerun--) hcode[im++] = 0;
8652 int zerun = l - SHORT_ZEROCODE_RUN + 2;
8654 if (im + zerun > iM + 1) {
8658 while (zerun--) hcode[im++] = 0;