Searched refs:workerCountOf (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java356 private static int workerCountOf(int c) { return c & CAPACITY; } method in class:ThreadPoolExecutor
620 ctl.compareAndSet(c, ctlOf(targetState, workerCountOf(c))))
642 if (workerCountOf(c) != 0) { // Eligible to terminate
870 int wc = workerCountOf(c);
959 if (workerCountOf(c) >= min)
999 int wc = workerCountOf(c);
1294 if (workerCountOf(c) < corePoolSize) {
1303 else if (workerCountOf(recheck) == 0)
1476 if (workerCountOf(ctl.get()) > corePoolSize)
1510 return workerCountOf(ct
[all...]

Completed in 30 milliseconds