DoubleToAscii      81 src/conversions.cc       DoubleToAscii(v, DTOA_SHORTEST, 0,
DoubleToAscii     173 src/conversions.cc   DoubleToAscii(value, DTOA_FIXED, f,
DoubleToAscii     272 src/conversions.cc     DoubleToAscii(value, DTOA_SHORTEST, 0,
DoubleToAscii     277 src/conversions.cc     DoubleToAscii(value, DTOA_PRECISION, f + 1,
DoubleToAscii     312 src/conversions.cc   DoubleToAscii(value, DTOA_PRECISION, p,
DoubleToAscii      80 src/dtoa.h     void DoubleToAscii(double v, DtoaMode mode, int requested_digits,
DoubleToAscii      66 test/cctest/test-dtoa.cc   DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii      70 test/cctest/test-dtoa.cc   DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
DoubleToAscii      75 test/cctest/test-dtoa.cc   DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
DoubleToAscii      80 test/cctest/test-dtoa.cc   DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii      84 test/cctest/test-dtoa.cc   DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
DoubleToAscii      90 test/cctest/test-dtoa.cc   DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
DoubleToAscii      96 test/cctest/test-dtoa.cc   DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     100 test/cctest/test-dtoa.cc   DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
DoubleToAscii     106 test/cctest/test-dtoa.cc   DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point);
DoubleToAscii     113 test/cctest/test-dtoa.cc   DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     117 test/cctest/test-dtoa.cc   DoubleToAscii(min_double, DTOA_FIXED, 5, buffer, &sign, &length, &point);
DoubleToAscii     123 test/cctest/test-dtoa.cc   DoubleToAscii(min_double, DTOA_PRECISION, 5, buffer, &sign, &length, &point);
DoubleToAscii     130 test/cctest/test-dtoa.cc   DoubleToAscii(max_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     134 test/cctest/test-dtoa.cc   DoubleToAscii(max_double, DTOA_PRECISION, 7, buffer, &sign, &length, &point);
DoubleToAscii     140 test/cctest/test-dtoa.cc   DoubleToAscii(4294967272.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     144 test/cctest/test-dtoa.cc   DoubleToAscii(4294967272.0, DTOA_FIXED, 5, buffer, &sign, &length, &point);
DoubleToAscii     151 test/cctest/test-dtoa.cc   DoubleToAscii(4294967272.0, DTOA_PRECISION, 14,
DoubleToAscii     158 test/cctest/test-dtoa.cc   DoubleToAscii(4.1855804968213567e298, DTOA_SHORTEST, 0,
DoubleToAscii     163 test/cctest/test-dtoa.cc   DoubleToAscii(4.1855804968213567e298, DTOA_PRECISION, 20,
DoubleToAscii     170 test/cctest/test-dtoa.cc   DoubleToAscii(5.5626846462680035e-309, DTOA_SHORTEST, 0,
DoubleToAscii     175 test/cctest/test-dtoa.cc   DoubleToAscii(5.5626846462680035e-309, DTOA_PRECISION, 1,
DoubleToAscii     182 test/cctest/test-dtoa.cc   DoubleToAscii(-2147483648.0, DTOA_SHORTEST, 0,
DoubleToAscii     189 test/cctest/test-dtoa.cc   DoubleToAscii(-2147483648.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
DoubleToAscii     196 test/cctest/test-dtoa.cc   DoubleToAscii(-2147483648.0, DTOA_PRECISION, 5,
DoubleToAscii     204 test/cctest/test-dtoa.cc   DoubleToAscii(-3.5844466002796428e+298, DTOA_SHORTEST, 0,
DoubleToAscii     210 test/cctest/test-dtoa.cc   DoubleToAscii(-3.5844466002796428e+298, DTOA_PRECISION, 10,
DoubleToAscii     220 test/cctest/test-dtoa.cc   DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     224 test/cctest/test-dtoa.cc   DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point);
DoubleToAscii     232 test/cctest/test-dtoa.cc   DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     236 test/cctest/test-dtoa.cc   DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point);
DoubleToAscii     242 test/cctest/test-dtoa.cc   DoubleToAscii(4128420500802942e-24, DTOA_SHORTEST, 0,
DoubleToAscii     249 test/cctest/test-dtoa.cc   DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     253 test/cctest/test-dtoa.cc   DoubleToAscii(v, DTOA_FIXED, 5, buffer, &sign, &length, &point);
DoubleToAscii     259 test/cctest/test-dtoa.cc   DoubleToAscii(v, DTOA_PRECISION, 19, buffer, &sign, &length, &point);
DoubleToAscii     279 test/cctest/test-dtoa.cc     DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
DoubleToAscii     300 test/cctest/test-dtoa.cc     DoubleToAscii(v, DTOA_FIXED, number_digits, buffer, &sign, &length, &point);
DoubleToAscii     323 test/cctest/test-dtoa.cc     DoubleToAscii(v, DTOA_PRECISION, number_digits,