OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DoubleToAscii
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/
dtoa.h
27
// Note that
DoubleToAscii
null-terminates its input. So the given buffer should
55
// '
DoubleToAscii
' expects the given buffer to be big enough to hold all digits
59
void
DoubleToAscii
(double v, DtoaMode mode, int requested_digits,
dtoa.cc
32
void
DoubleToAscii
(double v, DtoaMode mode, int requested_digits,
conversions.cc
135
DoubleToAscii
(v, DTOA_SHORTEST, 0,
227
DoubleToAscii
(value, DTOA_FIXED, f,
325
DoubleToAscii
(value, DTOA_SHORTEST, 0,
330
DoubleToAscii
(value, DTOA_PRECISION, f + 1,
365
DoubleToAscii
(value, DTOA_PRECISION, p,
/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
...]
Completed in 190 milliseconds