• Home
  • Raw
  • Download

Lines Matching refs:DoubleToAscii

66   DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);  in TEST()
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point); in TEST()
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point); in TEST()
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point); in TEST()
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point); in TEST()
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point); in TEST()
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point); in TEST()
113 DoubleToAscii(min_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
117 DoubleToAscii(min_double, DTOA_FIXED, 5, buffer, &sign, &length, &point); in TEST()
123 DoubleToAscii(min_double, DTOA_PRECISION, 5, buffer, &sign, &length, &point); in TEST()
130 DoubleToAscii(max_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
134 DoubleToAscii(max_double, DTOA_PRECISION, 7, buffer, &sign, &length, &point); in TEST()
140 DoubleToAscii(4294967272.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
144 DoubleToAscii(4294967272.0, DTOA_FIXED, 5, buffer, &sign, &length, &point); in TEST()
151 DoubleToAscii(4294967272.0, DTOA_PRECISION, 14, in TEST()
158 DoubleToAscii(4.1855804968213567e298, DTOA_SHORTEST, 0, in TEST()
163 DoubleToAscii(4.1855804968213567e298, DTOA_PRECISION, 20, in TEST()
170 DoubleToAscii(5.5626846462680035e-309, DTOA_SHORTEST, 0, in TEST()
175 DoubleToAscii(5.5626846462680035e-309, DTOA_PRECISION, 1, in TEST()
182 DoubleToAscii(-2147483648.0, DTOA_SHORTEST, 0, in TEST()
189 DoubleToAscii(-2147483648.0, DTOA_FIXED, 2, buffer, &sign, &length, &point); in TEST()
196 DoubleToAscii(-2147483648.0, DTOA_PRECISION, 5, in TEST()
204 DoubleToAscii(-3.5844466002796428e+298, DTOA_SHORTEST, 0, in TEST()
210 DoubleToAscii(-3.5844466002796428e+298, DTOA_PRECISION, 10, in TEST()
220 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
224 DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point); in TEST()
232 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
236 DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point); in TEST()
242 DoubleToAscii(4128420500802942e-24, DTOA_SHORTEST, 0, in TEST()
249 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
253 DoubleToAscii(v, DTOA_FIXED, 5, buffer, &sign, &length, &point); in TEST()
259 DoubleToAscii(v, DTOA_PRECISION, 19, buffer, &sign, &length, &point); in TEST()
279 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point); in TEST()
300 DoubleToAscii(v, DTOA_FIXED, number_digits, buffer, &sign, &length, &point); in TEST()
323 DoubleToAscii(v, DTOA_PRECISION, number_digits, in TEST()