Home
last modified time | relevance | path

Searched refs:compareHighPrecision (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/main/native/
Djava_lang_RealToString.cpp153 if (compareHighPrecision (Temp, TempLength, S, SLength) >= 0) in RealToString_bigIntDigitGenerator()
188 if (compareHighPrecision (R, RLength, Temp, TempLength) >= 0) in RealToString_bigIntDigitGenerator()
195 low = compareHighPrecision (R, RLength, mminus, mminus_Length) <= 0; in RealToString_bigIntDigitGenerator()
202 high = compareHighPrecision (Temp, TempLength, S, SLength) >= 0; in RealToString_bigIntDigitGenerator()
225 else if (compareHighPrecision (R, RLength, S, SLength) < 0) in RealToString_bigIntDigitGenerator()
Djava_lang_StringToReal.cpp415 comparison = compareHighPrecision (x, xLength, y, yLength); in doubleAlgorithm()
443 comparison2 = compareHighPrecision (D2, D2Length, y, yLength); in doubleAlgorithm()
449 if (compareHighPrecision (D2, D2Length, y, yLength) > 0) in doubleAlgorithm()
889 comparison = compareHighPrecision (x, xLength, y, yLength); in floatAlgorithm()
917 comparison2 = compareHighPrecision (D2, D2Length, y, yLength); in floatAlgorithm()
923 if (compareHighPrecision (D2, D2Length, y, yLength) > 0) in floatAlgorithm()
Dcbigint.h93 int32_t compareHighPrecision(uint64_t* arg1, int32_t length1, uint64_t* arg2, int32_t length2);
Dcbigint.cpp542 compareHighPrecision (uint64_t * arg1, int32_t length1, uint64_t * arg2, int32_t length2) in compareHighPrecision() function