Home | History | Annotate | Download | only in src

Lines Matching refs:decimal_point

194 static void RoundUp(Vector<char> buffer, int* length, int* decimal_point) {
198 *decimal_point = 1;
219 (*decimal_point)++;
237 int* length, int* decimal_point) {
267 RoundUp(buffer, length, decimal_point);
286 RoundUp(buffer, length, decimal_point);
294 static void TrimZeros(Vector<char> buffer, int* length, int* decimal_point) {
307 *decimal_point -= first_non_zero;
316 int* decimal_point) {
367 *decimal_point = *length;
372 *decimal_point = *length;
382 *decimal_point = *length;
384 buffer, length, decimal_point);
391 *decimal_point = -fractional_count;
393 *decimal_point = 0;
395 buffer, length, decimal_point);
397 TrimZeros(buffer, length, decimal_point);
400 // The string is empty and the decimal_point thus has no importance. Mimick
402 *decimal_point = -fractional_count;