Searched refs:DLength (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/main/native/ |
D | java_lang_StringToReal.cpp | 276 int32_t xLength, yLength, DLength, D2Length; in doubleAlgorithm() local 279 xLength = yLength = DLength = D2Length = 0; in doubleAlgorithm() 351 DLength = xLength; in doubleAlgorithm() 352 allocateU64 (D, DLength); in doubleAlgorithm() 353 memcpy (D, x, DLength * sizeof (uint64_t)); in doubleAlgorithm() 354 subtractHighPrecision (D, DLength, y, yLength); in doubleAlgorithm() 358 DLength = yLength; in doubleAlgorithm() 359 allocateU64 (D, DLength); in doubleAlgorithm() 360 memcpy (D, y, DLength * sizeof (uint64_t)); in doubleAlgorithm() 361 subtractHighPrecision (D, DLength, x, xLength); in doubleAlgorithm() [all …]
|