Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_lang_StringToReal.cpp276 int32_t xLength, yLength, DLength, D2Length; in doubleAlgorithm() local
279 xLength = yLength = DLength = D2Length = 0; in doubleAlgorithm()
296 xLength = sizeOfTenToTheE (e) + length; in doubleAlgorithm()
297 allocateU64 (x, xLength); in doubleAlgorithm()
298 memset (x + length, 0, sizeof (uint64_t) * (xLength - length)); in doubleAlgorithm()
300 timesTenToTheEHighPrecision (x, xLength, e); in doubleAlgorithm()
310 xLength = sizeOfTenToTheE (e) + length + ((-k) >> 6) + 1; in doubleAlgorithm()
311 allocateU64 (x, xLength); in doubleAlgorithm()
312 memset (x + length, 0, sizeof (uint64_t) * (xLength - length)); in doubleAlgorithm()
314 timesTenToTheEHighPrecision (x, xLength, e); in doubleAlgorithm()
[all …]