Searched refs:COUNT_MASK (Results 1 – 1 of 1) sorted by relevance
394 private static final int COUNT_MASK = (1 << COUNT_BITS) - 1; field in ThreadPoolExecutor404 private static int runStateOf(int c) { return c & ~COUNT_MASK; } in runStateOf()405 private static int workerCountOf(int c) { return c & COUNT_MASK; } in workerCountOf()914 >= ((core ? corePoolSize : maximumPoolSize) & COUNT_MASK)) in addWorker()