Searched defs:newReference (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicMarkableReference.java91 * @param newReference the new value for the reference
97 V newReference,
100 return compareAndSet(expectedReference, newReference,
111 * @param newReference the new value for the reference
117 V newReference,
124 ((newReference == current.reference &&
126 casPair(current, Pair.of(newReference, newMark)));
132 * @param newReference the new value for the reference
135 public void set(V newReference, boolean newMark) { argument
137 if (newReference !
96 weakCompareAndSet(V expectedReference, V newReference, boolean expectedMark, boolean newMark) argument
116 compareAndSet(V expectedReference, V newReference, boolean expectedMark, boolean newMark) argument
[all...]
H A DAtomicStampedReference.java91 * @param newReference the new value for the reference
97 V newReference,
100 return compareAndSet(expectedReference, newReference,
111 * @param newReference the new value for the reference
117 V newReference,
124 ((newReference == current.reference &&
126 casPair(current, Pair.of(newReference, newStamp)));
132 * @param newReference the new value for the reference
135 public void set(V newReference, int newStamp) { argument
137 if (newReference !
96 weakCompareAndSet(V expectedReference, V newReference, int expectedStamp, int newStamp) argument
116 compareAndSet(V expectedReference, V newReference, int expectedStamp, int newStamp) argument
[all...]

Completed in 387 milliseconds