Lines Matching defs:intpart
553 long intpart;
554 intpart = (long)value;
555 value = value - intpart;
557 intpart++;
558 return intpart;
579 unsigned long intpart;
666 intpart = (unsigned long)ufvalue;
680 fracpart = roundv(pow_10(max) * (ufvalue - intpart));
683 intpart++;
689 iconvert[iplace++] = "0123456789"[intpart % 10];
690 intpart = (intpart / 10);
691 } while (intpart && (iplace < (int)sizeof(iconvert)));