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

/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DAtomicStampedReference.java93 * @param newStamp the new value for the stamp
99 int newStamp) {
101 expectedStamp, newStamp);
113 * @param newStamp the new value for the stamp
119 int newStamp) {
125 newStamp == current.stamp) ||
126 casPair(current, Pair.of(newReference, newStamp)));
133 * @param newStamp the new value for the stamp
135 public void set(V newReference, int newStamp) { argument
137 if (newReference != current.reference || newStamp !
96 weakCompareAndSet(V expectedReference, V newReference, int expectedStamp, int newStamp) argument
116 compareAndSet(V expectedReference, V newReference, int expectedStamp, int newStamp) argument
154 attemptStamp(V expectedReference, int newStamp) argument
[all...]

Completed in 140 milliseconds