Home
last modified time | relevance | path

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

/external/v8/test/cctest/
Dtest-fast-dtoa.cc39 status = FastDtoa(min_double, FAST_DTOA_SHORTEST, 0, in TEST()
46 status = FastDtoa(max_double, FAST_DTOA_SHORTEST, 0, in TEST()
52 status = FastDtoa(4294967272.0, FAST_DTOA_SHORTEST, 0, in TEST()
58 status = FastDtoa(4.1855804968213567e298, FAST_DTOA_SHORTEST, 0, in TEST()
64 status = FastDtoa(5.5626846462680035e-309, FAST_DTOA_SHORTEST, 0, in TEST()
70 status = FastDtoa(2147483648.0, FAST_DTOA_SHORTEST, 0, in TEST()
76 status = FastDtoa(3.5844466002796428e+298, FAST_DTOA_SHORTEST, 0, in TEST()
85 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point); in TEST()
93 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point); in TEST()
108 status = FastDtoa(1.0, FAST_DTOA_PRECISION, 3, buffer, &length, &point); in TEST()
[all …]
/external/v8/src/
Ddtoa.cc85 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point); in DoubleToAscii()
91 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii()
Dfast-dtoa.h74 bool FastDtoa(double d,
Dfast-dtoa.cc709 bool FastDtoa(double v, in FastDtoa() function