Home
last modified time | relevance | path

Searched refs:AtomicIntegerArray (Results 1 – 4 of 4) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DAtomicIntegerArrayTest.java12 import java.util.concurrent.atomic.AtomicIntegerArray;
33 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testConstructor()
44 new AtomicIntegerArray(a); in testConstructor2NPE()
54 AtomicIntegerArray aa = new AtomicIntegerArray(a); in testConstructor2()
64 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testIndexing()
101 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testGetSet()
116 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testGetLazySet()
131 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testCompareAndSet()
149 final AtomicIntegerArray a = new AtomicIntegerArray(1); in testCompareAndSetInMultipleThreads()
169 AtomicIntegerArray aa = new AtomicIntegerArray(SIZE); in testWeakCompareAndSet()
[all …]
DAtomic8Test.java11 import java.util.concurrent.atomic.AtomicIntegerArray;
252 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayGetAndUpdate()
264 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayUpdateAndGet()
276 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayGetAndAccumulate()
288 AtomicIntegerArray a = new AtomicIntegerArray(1); in testIntArrayAccumulateAndGet()
506 () -> new AtomicIntegerArray(1).getAndUpdate(0, null), in testGetAndUpdateNPE()
527 () -> new AtomicIntegerArray(1).updateAndGet(0, null), in testUpdateAndGetNPE()
546 () -> new AtomicIntegerArray(1).getAndAccumulate(0, 1, null), in testGetAndAccumulateNPE()
565 () -> new AtomicIntegerArray(1).accumulateAndGet(0, 1, null), in testAccumulateAndGetNPE()
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DAtomicIntegerArray.java49 public class AtomicIntegerArray implements java.io.Serializable { class
82 public AtomicIntegerArray(int length) { in AtomicIntegerArray() method in AtomicIntegerArray
93 public AtomicIntegerArray(int[] array) { in AtomicIntegerArray() method in AtomicIntegerArray
/libcore/
Dopenjdk_java_files.bp983 "ojluni/src/main/java/java/util/concurrent/atomic/AtomicIntegerArray.java",