Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_lang_RealToString.cpp66 int RLength, SLength, TempLength, mplus_Length, mminus_Length; in RealToString_bigIntDigitGenerator() local
137 SLength = TempLength = STemp_SIZE; in RealToString_bigIntDigitGenerator()
148 while (SLength > 1 && S[SLength - 1] == 0) in RealToString_bigIntDigitGenerator()
149 --SLength; in RealToString_bigIntDigitGenerator()
153 if (compareHighPrecision (Temp, TempLength, S, SLength) >= 0) in RealToString_bigIntDigitGenerator()
184 TempLength = SLength + 1; in RealToString_bigIntDigitGenerator()
185 Temp[SLength] = 0; in RealToString_bigIntDigitGenerator()
186 memcpy (Temp, S, SLength * sizeof (uint64_t)); 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()