HomeSort by relevance Sort by last modified time
    Searched refs:putLongVolatile (Results 1 - 10 of 10) sorted by null

  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
AtomicLong.java 115 // Use putLongVolatile instead of ordinary volatile store when
117 U.putLongVolatile(this, VALUE, newValue);
Striped64.java 130 U.putLongVolatile(this, VALUE, 0L);
133 U.putLongVolatile(this, VALUE, identity);
AtomicLongArray.java 127 U.putLongVolatile(array, checkedByteOffset(i), newValue);
AtomicLongFieldUpdater.java 455 U.putLongVolatile(obj, offset, newValue);
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
StampedLock.java 541 U.putLongVolatile(this, STATE, (stamp += WBIT) == 0L ? ORIGIN : stamp);
588 U.putLongVolatile(this, STATE, (s += WBIT) == 0L ? ORIGIN : s);
672 U.putLongVolatile(this, STATE, next = s + (WBIT + RUNIT));
709 U.putLongVolatile(this, STATE,
740 U.putLongVolatile(this, STATE, (s += WBIT) == 0L ? ORIGIN : s);
    [all...]
AbstractQueuedLongSynchronizer.java 114 // Use putLongVolatile instead of ordinary volatile store when
116 U.putLongVolatile(this, STATE, newState);
    [all...]
  /art/test/004-UnsafeTest/src/
Main.java 221 unsafe.putLongVolatile(tv, volatileLongOffset, longValue);
222 check(tv.volatileLongVar, longValue, "Unsafe.putLongVolatile(Object, long, long)");
  /libcore/ojluni/src/main/java/sun/misc/
Unsafe.java 209 public native void putLongVolatile(Object obj, long offset, long newValue);
  /art/runtime/native/
sun_misc_Unsafe.cc 510 FAST_NATIVE_METHOD(Unsafe, putLongVolatile, "(Ljava/lang/Object;JJ)V"),
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 

Completed in 451 milliseconds