Lines Matching refs:sign

64   int sign;
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);
117 DoubleToAscii(min_double, DTOA_FIXED, 5, buffer, &sign, &length, &point);
123 DoubleToAscii(min_double, DTOA_PRECISION, 5, buffer, &sign, &length, &point);
130 DoubleToAscii(max_double, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
134 DoubleToAscii(max_double, DTOA_PRECISION, 7, buffer, &sign, &length, &point);
140 DoubleToAscii(4294967272.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
144 DoubleToAscii(4294967272.0, DTOA_FIXED, 5, buffer, &sign, &length, &point);
152 buffer, &sign, &length, &point);
159 buffer, &sign, &length, &point);
164 buffer, &sign, &length, &point);
171 buffer, &sign, &length, &point);
176 buffer, &sign, &length, &point);
183 buffer, &sign, &length, &point);
184 CHECK_EQ(1, sign);
189 DoubleToAscii(-2147483648.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
192 CHECK_EQ(1, sign);
197 buffer, &sign, &length, &point);
200 CHECK_EQ(1, sign);
205 buffer, &sign, &length, &point);
206 CHECK_EQ(1, sign);
211 buffer, &sign, &length, &point);
212 CHECK_EQ(1, sign);
220 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
224 DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point);
232 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
236 DoubleToAscii(v, DTOA_PRECISION, 20, buffer, &sign, &length, &point);
243 buffer, &sign, &length, &point);
244 CHECK_EQ(0, sign);
249 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
253 DoubleToAscii(v, DTOA_FIXED, 5, buffer, &sign, &length, &point);
259 DoubleToAscii(v, DTOA_PRECISION, 19, buffer, &sign, &length, &point);
270 int sign;
279 DoubleToAscii(v, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
280 CHECK_EQ(0, sign); // All precomputed numbers are positive.
290 int sign;
300 DoubleToAscii(v, DTOA_FIXED, number_digits, buffer, &sign, &length, &point);
301 CHECK_EQ(0, sign); // All precomputed numbers are positive.
313 int sign;
324 buffer, &sign, &length, &point);
325 CHECK_EQ(0, sign); // All precomputed numbers are positive.