Searched refs:count1 (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/java/util/ |
D | ComparableTimSort.java | 679 int count1 = 0; // Number of times in a row that first run won 691 count1 = 0; 696 count1++; 701 } while ((count1 | count2) < minGallop); 710 count1 = gallopRight((Comparable) a[cursor2], tmp, cursor1, len1, 0); 711 if (count1 != 0) { 712 System.arraycopy(tmp, cursor1, a, dest, count1); 713 dest += count1; 714 cursor1 += count1; 715 len1 -= count1; [all …]
|
D | TimSort.java | 712 int count1 = 0; // Number of times in a row that first run won 724 count1 = 0; 729 count1++; 734 } while ((count1 | count2) < minGallop); 743 count1 = gallopRight(a[cursor2], tmp, cursor1, len1, 0, c); 744 if (count1 != 0) { 745 System.arraycopy(tmp, cursor1, a, dest, count1); 746 dest += count1; 747 cursor1 += count1; 748 len1 -= count1; [all …]
|
/libcore/ojluni/src/main/java/java/lang/ |
D | AbstractStringBuilder.java | 108 int count1 = this.count; in compareTo() local 112 return isLatin1() ? StringLatin1.compareTo(val1, val2, count1, count2) in compareTo() 113 : StringUTF16.compareTo(val1, val2, count1, count2); in compareTo() 115 return isLatin1() ? StringLatin1.compareToUTF16(val1, val2, count1, count2) in compareTo() 116 : StringUTF16.compareToLatin1(val1, val2, count1, count2); in compareTo()
|