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

/libcore/ojluni/src/main/java/java/util/stream/
H A DSliceOps.java564 private long thisNodeSize; field in class:SliceOps.SliceTask
614 thisNodeSize = node.count();
625 thisNodeSize = leftChild.thisNodeSize + rightChild.thisNodeSize;
627 thisNodeSize = 0;
630 else if (thisNodeSize == 0)
632 else if (leftChild.thisNodeSize == 0)
657 long to = targetSize >= 0 ? Math.min(input.count(), targetOffset + targetSize) : thisNodeSize;
670 long size = completed ? thisNodeSize
[all...]

Completed in 30 milliseconds