Searched refs:count1 (Results 1 – 4 of 4) sorted by relevance
/dalvik/libcore/luni/src/main/java/java/util/ |
D | ComparableTimSort.java | 641 int count1 = 0; // Number of times in a row that first run won 653 count1 = 0; 658 count1++; 663 } while ((count1 | count2) < minGallop); 672 count1 = gallopRight((Comparable) a[cursor2], tmp, cursor1, len1, 0); 673 if (count1 != 0) { 674 System.arraycopy(tmp, cursor1, a, dest, count1); 675 dest += count1; 676 cursor1 += count1; 677 len1 -= count1; [all …]
|
D | TimSort.java | 674 int count1 = 0; // Number of times in a row that first run won 686 count1 = 0; 691 count1++; 696 } while ((count1 | count2) < minGallop); 705 count1 = gallopRight(a[cursor2], tmp, cursor1, len1, 0, c); 706 if (count1 != 0) { 707 System.arraycopy(tmp, cursor1, a, dest, count1); 708 dest += count1; 709 cursor1 += count1; 710 len1 -= count1; [all …]
|
/dalvik/tests/055-enum-performance/src/ |
D | Main.java | 16 int count1 = test1(500); in run() local 26 System.out.println("test1: performed " + count1 + " iterations"); in run() 30 double msec1 = (time1 - time0) / (double) count1 / 1000000; in run()
|
/dalvik/vm/compiler/codegen/arm/ |
D | Assemble.c | 1164 int count1 = getProfileCount(jitEntry1); in sortTraceProfileCount() local 1166 return (count1 == count2) ? 0 : ((count1 > count2) ? -1 : 1); in sortTraceProfileCount()
|