Searched refs:putLongVolatile (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/locks/ |
D | StampedLock.java | 541 U.putLongVolatile(this, STATE, (stamp += WBIT) == 0L ? ORIGIN : stamp); in unlockWrite() 588 U.putLongVolatile(this, STATE, (s += WBIT) == 0L ? ORIGIN : s); in unlock() 672 U.putLongVolatile(this, STATE, next = s + (WBIT + RUNIT)); in tryConvertToReadLock() 709 U.putLongVolatile(this, STATE, in tryConvertToOptimisticRead() 740 U.putLongVolatile(this, STATE, (s += WBIT) == 0L ? ORIGIN : s); in tryUnlockWrite() 923 U.putLongVolatile(this, STATE, (s += WBIT) == 0L ? ORIGIN : s); in unstampedUnlockWrite() 948 U.putLongVolatile(this, STATE, ORIGIN); // reset to unlocked state in readObject() 966 U.putLongVolatile(this, STATE, s); in tryIncReaderOverflow() 993 U.putLongVolatile(this, STATE, next); in tryDecReaderOverflow()
|
D | AbstractQueuedLongSynchronizer.java | 116 U.putLongVolatile(this, STATE, newState); in setState()
|
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/ |
D | Striped64.java | 131 U.putLongVolatile(this, VALUE, 0L); in reset() 134 U.putLongVolatile(this, VALUE, identity); in reset()
|
D | AtomicLong.java | 117 U.putLongVolatile(this, VALUE, newValue); in set()
|
D | AtomicLongArray.java | 127 U.putLongVolatile(array, checkedByteOffset(i), newValue); in set()
|
D | AtomicLongFieldUpdater.java | 465 U.putLongVolatile(obj, offset, newValue); in set()
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | Unsafe.java | 211 public native void putLongVolatile(Object obj, long offset, long newValue); in putLongVolatile() method in Unsafe
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | Unsafe.java | 89 public native void putLongVolatile(java.lang.Object obj, long offset, long newValue); in putLongVolatile() method in Unsafe
|