Home
last modified time | relevance | path

Searched refs:sizeThreshold (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
DForEachOps.java281 long sizeEstimate = rightSplit.estimateSize(), sizeThreshold; in compute() local
282 if ((sizeThreshold = targetSize) == 0L) in compute()
283 targetSize = sizeThreshold = AbstractTask.suggestTargetSize(sizeEstimate); in compute()
289 if (sizeEstimate <= sizeThreshold || in compute()
405 long sizeThreshold = task.targetSize; in doCompute() local
407 while (rightSplit.estimateSize() > sizeThreshold && in doCompute()
DAbstractShortCircuitTask.java104 long sizeThreshold = getTargetSize(sizeEstimate); in compute() local
114 if (sizeEstimate <= sizeThreshold || (ls = rs.trySplit()) == null) { in compute()
DAbstractTask.java294 long sizeThreshold = getTargetSize(sizeEstimate); in compute() local
297 while (sizeEstimate > sizeThreshold && (ls = rs.trySplit()) != null) { in compute()