Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_lang_StringToReal.cpp275 uint64_t* D2; in doubleAlgorithm() local
278 x = y = D = D2 = 0; in doubleAlgorithm()
291 free(D2); in doubleAlgorithm()
292 y = D = D2 = NULL; in doubleAlgorithm()
371 allocateU64 (D2, D2Length); in doubleAlgorithm()
373 multiplyHighPrecision (D, DLength, &m, 1, D2, D2Length); in doubleAlgorithm()
376 comparison2 = compareHighPrecision (D2, D2Length, y, yLength); in doubleAlgorithm()
382 simpleShiftLeftHighPrecision (D2, D2Length, 1); in doubleAlgorithm()
383 if (compareHighPrecision (D2, D2Length, y, yLength) > 0) in doubleAlgorithm()
438 free(D2); in doubleAlgorithm()
[all …]
/libcore/ojluni/src/main/java/sun/misc/
DFloatingDecimal.java1289 int D2 = D5; // powers of 2 in bigD
1294 D2 -= bigIntExp;
1309 D2 += hulpbias;
1312 int common2 = Math.min(B2, Math.min(D2, Ulp2));
1314 D2 -= common2;
1318 if (bigD == null || prevD2 != D2) {
1319 bigD = bigD0.leftShift(D2);
1320 prevD2 = D2;
1595 int D2 = D5; // powers of 2 in bigD in floatValue() local
1600 D2 -= bigIntExp; in floatValue()
[all …]
/libcore/luni/src/test/java/libcore/libcore/reflect/
DParameterizedTypeRegressionTest.java48 class D2<Z> { class in ParameterizedTypeRegressionTest.A.B.C2
186 Type actual = new ParameterizedClass<A<Integer>.B<Float>.C2.D2<String>>() { in testNested4_nonGenericNonLeaf()
199 A.B.C2.D2.class, in testNested4_nonGenericNonLeaf()
/libcore/luni/src/test/java/libcore/java/lang/
DClassCastExceptionTest.java83 …A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2… enumConstant
88 …A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2… enumConstant
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DDoubleTest.java262 Double D2 = new Double(d2); in test_compare() local
264 D1.compareTo(D2) == -1); in test_compare()
266 D2.compareTo(D1) == 1); in test_compare()
1347 Double D2 = new Double(d2); in test_compareToLjava_lang_Double() local
1349 .compareTo(D2) == -1); in test_compareToLjava_lang_Double()
1350 assertTrue("Assert 5: compareTo() " + d2 + " should be greater " + d1, D2 in test_compareToLjava_lang_Double()