Home | History | Annotate | Download | only in seq

Lines Matching defs:places

456  * decimal_places - count decimal places in a number (string)
461 int places = 0;
469 places++;
471 return (places);
486 int precision, width1, width2, places;
505 if ((places = decimal_places(buf)))
506 width1 -= (places + strlen(decimal_point));
508 precision = MAX(places, precision);
513 if ((places = decimal_places(buf)))
514 width2 -= (places + strlen(decimal_point));