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

/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
H A DAtomicStampedReference.java122 * @param newStamp the new value for the stamp
128 int newStamp) {
130 expectedStamp, newStamp);
142 * @param newStamp the new value for the stamp
148 int newStamp) {
154 newStamp == current.stamp) ||
155 casPair(current, Pair.of(newReference, newStamp)));
162 * @param newStamp the new value for the stamp
164 public void set(V newReference, int newStamp) { argument
166 if (newReference != current.reference || newStamp !
125 weakCompareAndSet(V expectedReference, V newReference, int expectedStamp, int newStamp) argument
145 compareAndSet(V expectedReference, V newReference, int expectedStamp, int newStamp) argument
183 attemptStamp(V expectedReference, int newStamp) argument
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DCalendar.java3423 int newStamp = MINIMUM_USER_STAMP;
3429 if (v >= newStamp && min > v) {
3441 stamp[i] = newStamp;
3444 newStamp++;
3449 nextStamp = newStamp;

Completed in 53 milliseconds