OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:APPROX_MIN_MAGNITUDE
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/lang/
StringToReal.java
184
final int
APPROX_MIN_MAGNITUDE
= -359;
187
if (length > MAX_DIGITS && result.e <
APPROX_MIN_MAGNITUDE
) {
188
int d = Math.min(
APPROX_MIN_MAGNITUDE
- (int) result.e, length - 1);
/libcore/luni/src/main/native/
java_lang_StringToReal.cpp
258
static const jint
APPROX_MIN_MAGNITUDE
= -309;
295
else if (e >
APPROX_MIN_MAGNITUDE
)
300
if (e <=
APPROX_MIN_MAGNITUDE
)
Completed in 861 milliseconds