Home
last modified time | relevance | path

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

/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/
Druntests.py343 MAX_DOUBLE = (2 - Fraction(2) ** -52) * (2 ** 1023) variable
348 DOUBLE_INF_CUTOFF = MAX_DOUBLE + 2 ** (MAX_ULP_DOUBLE - 1)
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DJsonFormat.java1865 private static final BigDecimal MAX_DOUBLE = field in JsonFormat.ParserImpl
1883 if (value.compareTo(MAX_DOUBLE) > 0 || value.compareTo(MIN_DOUBLE) < 0) { in parseDouble()