Home
last modified time | relevance | path

Searched refs:rr (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
DDoublePipeline.java394 (ll, rr) -> {
395 Collectors.sumWithCompensation(ll, rr[0]);
396 Collectors.sumWithCompensation(ll, rr[1]);
397 ll[2] += rr[2];
437 (ll, rr) -> {
438 Collectors.sumWithCompensation(ll, rr[0]);
439 Collectors.sumWithCompensation(ll, rr[1]);
440 ll[2] += rr[2];
441 ll[3] += rr[3];
DIntPipeline.java440 (ll, rr) -> {
441 ll[0] += rr[0];
442 ll[1] += rr[1];
DLongPipeline.java417 (ll, rr) -> {
418 ll[0] += rr[0];
419 ll[1] += rr[1];
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DKeyPairGenerator3Test.java99 SecureRandom rr = new SecureRandom(); in testGenKeyPair01() local
101 kpg[i].initialize(512, rr); in testGenKeyPair01()
/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletableFuture.java1138 @SuppressWarnings("unchecked") R rr = (R) r; in biApply()
1140 completeValue(f.apply(rr, ss)); in biApply()
1209 @SuppressWarnings("unchecked") R rr = (R) r; in biAccept()
1211 f.accept(rr, ss); in biAccept()
1411 @SuppressWarnings("unchecked") R rr = (R) r; in orApply() local
1412 completeValue(f.apply(rr)); in orApply()
1475 @SuppressWarnings("unchecked") R rr = (R) r; in orAccept() local
1476 f.accept(rr); in orAccept()