Searched refs:FastFixedDtoa (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/v8/test/cctest/
H A Dtest-fixed-dtoa.cc48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
68 CHECK(FastFixedDtoa(1e21, 5, buffer, &length, &point));
73 CHECK(FastFixedDtoa(999999999999999868928.00, 2, buffer, &length, &point));
77 CHECK(FastFixedDtoa(6.9999999999999989514240000e+21, 5, buffer,
82 CHECK(FastFixedDtoa(1.5, 5, buffer, &length, &point));
86 CHECK(FastFixedDtoa(1.5
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfixed-dtoa.h44 // Example: FastFixedDtoa(0.001, 5, ...) is allowed to return buffer = "1", and
47 // FastFixedDtoa(0.15, 2, ...) thus returns buffer = "2", decimal_point = 0.
53 bool FastFixedDtoa(double v, int fractional_count,
H A Dfixed-dtoa.cc311 bool FastFixedDtoa(double v, function in namespace:WTF::double_conversion
H A Ddouble-conversion.cc394 fast_worked = FastFixedDtoa(v, requested_digits, vector, length, point);
/external/chromium_org/v8/src/
H A Dfixed-dtoa.h18 // Example: FastFixedDtoa(0.001, 5, ...) is allowed to return buffer = "1", and
21 // FastFixedDtoa(0.15, 2, ...) thus returns buffer = "2", decimal_point = 0.
27 bool FastFixedDtoa(double v, int fractional_count,
H A Ddtoa.cc65 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point);
H A Dfixed-dtoa.cc289 bool FastFixedDtoa(double v, function in namespace:v8::internal

Completed in 5750 milliseconds