Home | History | Annotate | Download | only in util

Lines Matching refs:iterations

24     private int iterations;
50 return iterations;
76 public String toString(long iterations) {
77 return nf.format(getDuration()/iterations) + "\tns";
80 public String toString(long iterations, long other) {
81 return nf.format(getDuration()/iterations) + "\tns\t" + pf.format((double)getDuration()/other - 1D) + "";
99 // The current strategy is to warm up once, then time it until we reach the timingPeriod (eg 5 seconds), increasing the iterations each time
100 // At first, we double the iterations.
108 iterations = 1;
113 loop.time(iterations);
116 duration /= iterations;
119 duration /= iterations;
121 iterations = (iterations * 4) / 3 + 1;
123 iterations = iterations * 2;