Home | History | Annotate | Download | only in util

Lines Matching refs:count2

709             int count2 = 0; // Number of times in a row that second run won
719 count2++;
726 count2 = 0;
730 } while ((count1 | count2) < minGallop);
752 count2 = gallopLeft(tmp[cursor1], a, cursor2, len2, 0, c);
753 if (count2 != 0) {
754 System.arraycopy(a, cursor2, a, dest, count2);
755 dest += count2;
756 cursor2 += count2;
757 len2 -= count2;
765 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);
829 int count2
840 count2 = 0;
845 count2++;
850 } while ((count1 | count2) < minGallop);
872 count2 = len2 - gallopLeft(a[cursor1], tmp, tmpBase, len2, len2 - 1, c);
873 if (count2 != 0) {
874 dest -= count2;
875 cursor2 -= count2;
876 len2 -= count2;
877 System.arraycopy(tmp, cursor2 + 1, a, dest + 1, count2);
885 } while (count1 >= MIN_GALLOP | count2 >= MIN_GALLOP);