HomeSort by relevance Sort by last modified time
    Searched defs:compareAndSwapObject (Results 1 - 2 of 2) sorted by null

  /libcore/libart/src/main/java/sun/misc/
Unsafe.java 146 public native boolean compareAndSwapObject(Object obj, long offset,
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 217 UNSAFE.compareAndSwapObject(this, nextOffset, cmp, val);
230 UNSAFE.compareAndSwapObject(this, matchOffset, null, s)) {
245 UNSAFE.compareAndSwapObject(this, matchOffset, null, this);
276 UNSAFE.compareAndSwapObject(this, headOffset, h, nh);
519 UNSAFE.compareAndSwapObject(this, nextOffset, cmp, val);
524 UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
531 UNSAFE.compareAndSwapObject(this, itemOffset, cmp, this);
589 UNSAFE.compareAndSwapObject(this, headOffset, h, nh))
598 UNSAFE.compareAndSwapObject(this, tailOffset, t, nt);
606 UNSAFE.compareAndSwapObject(this, cleanMeOffset, cmp, val)
    [all...]

Completed in 66 milliseconds