Searched refs:crit2 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/java/util/Arrays/
H A DCopyMethods.java285 // it is near a critical value, either zero, crit1, or crit2.
286 static int inc(int x, int crit1, int crit2) { argument
288 if (crit1 > crit2) { int t = crit1; crit1 = crit2; crit2 = t; }
289 assert(crit1 <= crit2);
290 assert(x <= crit2); // next1 or next2 must be the limit value
296 } else if (x >= crit1+D && x < crit2-D) {
297 x += (x << 1) >> downShift; // giant step toward crit2-D
298 if (x > crit2
[all...]

Completed in 31 milliseconds