Home
last modified time | relevance | path

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

/external/v8/test/cctest/
Dtest-dtoa.cc66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point); in TEST()
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point); in TEST()
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point); in TEST()
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point); in TEST()
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point); in TEST()
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point); in TEST()
113 DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
[all …]
/external/v8/src/
Ddtoa.h80 void DoubleToAscii(double v, DtoaMode mode, int requested_digits,
Dconversions.cc751 DoubleToAscii(v, DTOA_SHORTEST, 0, in DoubleToCString()
843 DoubleToAscii(value, DTOA_FIXED, f, in DoubleToFixedCString()
942 DoubleToAscii(value, DTOA_SHORTEST, 0, in DoubleToExponentialCString()
947 DoubleToAscii(value, DTOA_PRECISION, f + 1, in DoubleToExponentialCString()
982 DoubleToAscii(value, DTOA_PRECISION, p, in DoubleToPrecisionCString()
Ddtoa.cc53 void DoubleToAscii(double v, DtoaMode mode, int requested_digits, in DoubleToAscii() function