Searched defs:queueSize (Results 1 - 2 of 2) sorted by relevance

/libcore/benchmarks/src/benchmarks/regression/
H A DPriorityQueueBenchmark.java28 @Param({"100", "1000", "10000"}) private int queueSize; field in class:PriorityQueueBenchmark
42 int numShared = (int)(queueSize * ((double)hitRate / 100));
44 int totalElements = 2 * queueSize - numShared;
56 for (int i = numShared; i < queueSize; i++) {
60 for (int i = queueSize; i < totalElements; i++) {
73 int resizingThreshold = queueSize / 10;
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java843 final int queueSize() { method in class:ForkJoinPool.WorkQueue
850 * any tasks than does queueSize, by checking whether a
3002 count += w.queueSize();
3021 count += w.queueSize();
3113 int size = w.queueSize();

Completed in 178 milliseconds