Home
last modified time | relevance | path

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

/external/chromium_org/v8/test/cctest/
Dtest-fast-dtoa.cc64 status = FastDtoa(min_double, FAST_DTOA_SHORTEST, 0, in TEST()
71 status = FastDtoa(max_double, FAST_DTOA_SHORTEST, 0, in TEST()
77 status = FastDtoa(4294967272.0, FAST_DTOA_SHORTEST, 0, in TEST()
83 status = FastDtoa(4.1855804968213567e298, FAST_DTOA_SHORTEST, 0, in TEST()
89 status = FastDtoa(5.5626846462680035e-309, FAST_DTOA_SHORTEST, 0, in TEST()
95 status = FastDtoa(2147483648.0, FAST_DTOA_SHORTEST, 0, in TEST()
101 status = FastDtoa(3.5844466002796428e+298, FAST_DTOA_SHORTEST, 0, in TEST()
110 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point); in TEST()
118 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point); in TEST()
133 status = FastDtoa(1.0, FAST_DTOA_PRECISION, 3, buffer, &length, &point); in TEST()
[all …]
/external/chromium_org/v8/src/
Ddtoa.cc62 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point); in DoubleToAscii()
68 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii()
Dfast-dtoa.h51 bool FastDtoa(double d,
Dfast-dtoa.cc686 bool FastDtoa(double v, in FastDtoa() function
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
Dfast-dtoa.h77 bool FastDtoa(double d,
Ddouble-conversion.cc391 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, vector, length, point); in DoubleToAscii()
397 fast_worked = FastDtoa(v, FAST_DTOA_PRECISION, requested_digits, in DoubleToAscii()
Dfast-dtoa.cc710 bool FastDtoa(double v, in FastDtoa() function