Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Dcbigint.cpp538 uint64_t overflow; in timesTenToTheEHighPrecision() local
563 overflow = simpleMultiplyHighPrecision64 (result, length, TEN_E19); in timesTenToTheEHighPrecision()
564 if (overflow) in timesTenToTheEHighPrecision()
565 result[length++] = overflow; in timesTenToTheEHighPrecision()
570 overflow = simpleMultiplyHighPrecision (result, length, TEN_E9); in timesTenToTheEHighPrecision()
571 if (overflow) in timesTenToTheEHighPrecision()
572 result[length++] = overflow; in timesTenToTheEHighPrecision()
579 overflow = simpleAppendDecimalDigitHighPrecision (result, length, 0); in timesTenToTheEHighPrecision()
580 if (overflow) in timesTenToTheEHighPrecision()
581 result[length++] = overflow; in timesTenToTheEHighPrecision()
[all …]
Djava_lang_StringToReal.cpp98 uint32_t overflow; in createDouble() local
116 overflow = in createDouble()
118 if (overflow) in createDouble()
120 f[index++] = overflow; in createDouble()
489 uint32_t overflow; in createFloat() local
507 overflow = in createFloat()
509 if (overflow) in createFloat()
512 f[index++] = overflow; in createFloat()
/libcore/expectations/
Dknownfailures.txt1481 description: "Recursive calls to Charset.forName from within providers will overflow the stack.",