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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java388 private static int workerCountOf(int c) { return c & CAPACITY; } method in class:ThreadPoolExecutor
672 ctl.compareAndSet(c, ctlOf(targetState, workerCountOf(c))))
694 if (workerCountOf(c) != 0) { // Eligible to terminate
906 int wc = workerCountOf(c);
1014 if (workerCountOf(c) >= min)
1054 int wc = workerCountOf(c);
1359 if (workerCountOf(c) < corePoolSize) {
1368 else if (workerCountOf(recheck) == 0)
1545 if (workerCountOf(ctl.get()) > corePoolSize)
1579 return workerCountOf(ct
[all...]

Completed in 243 milliseconds