Searched refs:CTL (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ForkJoinPool.java | 1574 if (ctl == c && U.compareAndSwapLong(this, CTL, c, nc)) { in tryAddWorker() 1658 (this, CTL, c = ctl, ((AC_MASK & (c - AC_UNIT)) | in deregisterWorker() 1714 if (sp == vs && U.compareAndSwapLong(this, CTL, c, nc)) { in signalWork() 1738 if (sp == vs && U.compareAndSwapLong(this, CTL, c, nc)) { in tryRelease() 1766 U.compareAndSwapLong(this, CTL, c, nc)) { in tryReactivate() 1787 } while (!U.compareAndSwapLong(this, CTL, c, nc)); in inactivate() 1858 U.compareAndSwapLong(this, CTL, c, nc)) { in timedAwaitWork() 1889 dropped = U.compareAndSwapLong(this, CTL, c, nc); in tryDropSpare() 1906 if (U.compareAndSwapLong(this, CTL, c, nc)) { in tryDropSpare() 2202 canBlock = U.compareAndSwapLong(this, CTL, c, nc); in tryCompensate() [all …]
|