Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/
DDoubleSummaryStatistics.java87 sumWithCompensation(value); in accept()
102 sumWithCompensation(other.sum); in combine()
103 sumWithCompensation(other.sumCompensation); in combine()
112 private void sumWithCompensation(double value) { in sumWithCompensation() method in DoubleSummaryStatistics
/libcore/ojluni/src/main/java/java/util/stream/
DDoublePipeline.java406 Collectors.sumWithCompensation(ll, d);
410 Collectors.sumWithCompensation(ll, rr[0]);
411 Collectors.sumWithCompensation(ll, rr[1]);
449 Collectors.sumWithCompensation(ll, d);
453 Collectors.sumWithCompensation(ll, rr[0]);
454 Collectors.sumWithCompensation(ll, rr[1]);
DCollectors.java518 (a, t) -> { sumWithCompensation(a, mapper.applyAsDouble(t));
520 (a, b) -> { sumWithCompensation(a, b[0]);
522 return sumWithCompensation(a, b[1]); },
538 static double[] sumWithCompensation(double[] intermediateSum, double value) {
630 …(a, t) -> { sumWithCompensation(a, mapper.applyAsDouble(t)); a[2]++; a[3]+= mapper.applyAsDouble(t…
631 …(a, b) -> { sumWithCompensation(a, b[0]); sumWithCompensation(a, b[1]); a[2] += b[2]; a[3] += b[3]…