Searched refs:rr (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/test/java/util/DoubleStreamSums/ |
D | CompensatedSums.java | 143 (ll, rr) -> { 144 sumWithCompensation(ll, rr[0]); 145 sumWithCompensation(ll, rr[1]); 146 ll[2] += rr[2]; 150 (ll, rr) -> { 151 sumWithCompensation(ll, rr[0]); 152 sumWithCompensation(ll, -rr[1]); 153 ll[2] += rr[2];
|
/libcore/ojluni/src/main/java/java/util/stream/ |
D | DoublePipeline.java | 472 (ll, rr) -> { 473 Collectors.sumWithCompensation(ll, rr[0]); 475 Collectors.sumWithCompensation(ll, -rr[1]); 476 ll[2] += rr[2]; 516 (ll, rr) -> { 517 Collectors.sumWithCompensation(ll, rr[0]); 519 Collectors.sumWithCompensation(ll, -rr[1]); 520 ll[2] += rr[2]; 521 ll[3] += rr[3];
|
D | IntPipeline.java | 516 (ll, rr) -> { 517 ll[0] += rr[0]; 518 ll[1] += rr[1];
|
D | LongPipeline.java | 494 (ll, rr) -> { 495 ll[0] += rr[0]; 496 ll[1] += rr[1];
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | KeyPairGenerator3Test.java | 99 SecureRandom rr = new SecureRandom(); in testGenKeyPair01() local 101 kpg[i].initialize(512, rr); in testGenKeyPair01()
|
/libcore/ojluni/src/main/java/java/lang/runtime/ |
D | ObjectMethods.java | 209 MethodType rr = MethodType.methodType(boolean.class, receiverClass, receiverClass); in makeEquals() local 220 … accumulator = MethodHandles.guardWithTest(thisFieldEqual, accumulator, instanceFalse.asType(rr)); in makeEquals()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletableFuture.java | 1285 @SuppressWarnings("unchecked") R rr = (R) r; in biApply() 1287 completeValue(f.apply(rr, ss)); in biApply() 1360 @SuppressWarnings("unchecked") R rr = (R) r; in biAccept() 1362 f.accept(rr, ss); in biAccept()
|