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

/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DStriped64.java192 static final int getProbe() { method in class:Striped64
224 if ((h = getProbe()) == 0) {
226 h = getProbe();
308 if ((h = getProbe()) == 0) {
310 h = getProbe();
H A DLongAdder.java90 (a = as[getProbe() & m]) == null ||
H A DDoubleAccumulator.java110 (a = as[getProbe() & m]) == null ||
H A DDoubleAdder.java97 (a = as[getProbe() & m]) == null ||
H A DLongAccumulator.java110 (a = as[getProbe() & m]) == null ||
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java403 * ThreadLocalRandom.getProbe() for similar purposes here because
2528 if ((r = ThreadLocalRandom.getProbe()) == 0) {
2530 r = ThreadLocalRandom.getProbe();
2572 int r = ThreadLocalRandom.getProbe();
2583 int r = ThreadLocalRandom.getProbe();
2596 int r = ThreadLocalRandom.getProbe();
H A DThreadLocalRandom.java927 static final int getProbe() { method in class:ThreadLocalRandom
H A DConcurrentHashMap.java2331 (a = as[ThreadLocalRandom.getProbe() & m]) == null ||
2586 if ((h = ThreadLocalRandom.getProbe()) == 0) {
2588 h = ThreadLocalRandom.getProbe();

Completed in 142 milliseconds