Searched refs:compareHighPrecision (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/main/native/ |
D | java_lang_RealToString.cpp | 153 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()
|
D | java_lang_StringToReal.cpp | 415 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()
|
D | cbigint.h | 93 int32_t compareHighPrecision(uint64_t* arg1, int32_t length1, uint64_t* arg2, int32_t length2);
|
D | cbigint.cpp | 542 compareHighPrecision (uint64_t * arg1, int32_t length1, uint64_t * arg2, int32_t length2) in compareHighPrecision() function
|