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

  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 137 UNSAFE.compareAndSwapInt(this, stateOffset, NEW,
147 UNSAFE.putOrderedInt(this, stateOffset, INTERRUPTED);
201 if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
203 UNSAFE.putOrderedInt(this, stateOffset, NORMAL); // final state
219 if (UNSAFE.compareAndSwapInt(this, stateOffset, NEW, COMPLETING)) {
221 UNSAFE.putOrderedInt(this, stateOffset, EXCEPTIONAL); // final state
439 private static final long stateOffset;
446 stateOffset = UNSAFE.objectFieldOffset
Phaser.java 363 if (UNSAFE.compareAndSwapLong(this, stateOffset, s, s-=adjust)) {
376 UNSAFE.compareAndSwapLong(this, stateOffset, s, n);
381 UNSAFE.compareAndSwapLong(this, stateOffset,
417 else if (UNSAFE.compareAndSwapLong(this, stateOffset,
424 if (UNSAFE.compareAndSwapLong(this, stateOffset, s, next))
437 (this, stateOffset, s,
469 (this, stateOffset, s,
658 if (UNSAFE.compareAndSwapLong(this, stateOffset, s,
674 if (!UNSAFE.compareAndSwapLong(this, stateOffset, s, n))
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 315 return unsafe.compareAndSwapLong(this, stateOffset, expect, update);
    [all...]
AbstractQueuedSynchronizer.java 545 return unsafe.compareAndSwapInt(this, stateOffset, expect, update);
    [all...]

Completed in 92 milliseconds