HomeSort by relevance Sort by last modified time
    Searched refs:DoubleToAscii (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/v8/src/
dtoa.h 48 // Note that DoubleToAscii null-terminates its input. So the given buffer should
76 // 'DoubleToAscii' expects the given buffer to be big enough to hold all digits
80 void DoubleToAscii(double v, DtoaMode mode, int requested_digits,
dtoa.cc 56 void DoubleToAscii(double v, DtoaMode mode, int requested_digits,
conversions.cc 86 DoubleToAscii(v, DTOA_SHORTEST, 0,
178 DoubleToAscii(value, DTOA_FIXED, f,
277 DoubleToAscii(value, DTOA_SHORTEST, 0,
282 DoubleToAscii(value, DTOA_PRECISION, f + 1,
317 DoubleToAscii(value, DTOA_PRECISION, p,
  /external/v8/src/
dtoa.h 48 // Note that DoubleToAscii null-terminates its input. So the given buffer should
76 // 'DoubleToAscii' expects the given buffer to be big enough to hold all digits
80 void DoubleToAscii(double v, DtoaMode mode, int requested_digits,
dtoa.cc 56 void DoubleToAscii(double v, DtoaMode mode, int requested_digits,
conversions.cc 81 DoubleToAscii(v, DTOA_SHORTEST, 0,
173 DoubleToAscii(value, DTOA_FIXED, f,
272 DoubleToAscii(value, DTOA_SHORTEST, 0,
277 DoubleToAscii(value, DTOA_PRECISION, f + 1,
312 DoubleToAscii(value, DTOA_PRECISION, p,
  /external/chromium_org/v8/test/cctest/
test-dtoa.cc 66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point);
113 DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point)
    [all...]
  /external/v8/test/cctest/
test-dtoa.cc 66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point);
113 DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.h 286 // Note that DoubleToAscii null-terminates its input. So the given buffer
315 // DoubleToAscii expects the given buffer to be big enough to hold all
321 static void DoubleToAscii(double v,
double-conversion.cc 177 DoubleToAscii(value, SHORTEST, 0, decimal_rep, kDecimalRepCapacity,
221 DoubleToAscii(value, FIXED, requested_digits,
256 DoubleToAscii(value, SHORTEST, 0,
260 DoubleToAscii(value, PRECISION, requested_digits + 1,
304 DoubleToAscii(value, PRECISION, precision,
323 // Usually the buffer is already at the correct length, but 'DoubleToAscii'
355 void DoubleToStringConverter::DoubleToAscii(double v,

Completed in 113 milliseconds