Home
last modified time | relevance | path

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

/external/chromium_org/v8/test/cctest/
Dtest-dtoa.cc66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
113 DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
130 DoubleToAscii(max_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
140 DoubleToAscii(4294967272.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
158 DoubleToAscii(4.1855804968213567e298, DTOA_SHORTEST, 0, in TEST()
170 DoubleToAscii(5.5626846462680035e-309, DTOA_SHORTEST, 0, in TEST()
182 DoubleToAscii(-2147483648.0, DTOA_SHORTEST, 0, in TEST()
204 DoubleToAscii(-3.5844466002796428e+298, DTOA_SHORTEST, 0, in TEST()
[all …]
/external/chromium_org/v8/src/
Ddtoa.cc23 case DTOA_SHORTEST: return BIGNUM_DTOA_SHORTEST; in DtoaToBignumDtoaMode()
36 ASSERT(mode == DTOA_SHORTEST || requested_digits >= 0); in DoubleToAscii()
61 case DTOA_SHORTEST: in DoubleToAscii()
Ddtoa.h15 DTOA_SHORTEST, enumerator
Dconversions.cc134 DoubleToAscii(v, DTOA_SHORTEST, 0, in DoubleToCString()
324 DoubleToAscii(value, DTOA_SHORTEST, 0, in DoubleToExponentialCString()