Home | History | Annotate | Download | only in openbsd-compat

Lines Matching refs:intpart

624 	LLONG intpart;
626 intpart = (LLONG)value;
627 value = value - intpart;
628 if (value >= 0.5) intpart++;
630 return intpart;
686 double intpart;
730 my_modf(temp, &intpart);
732 fracpart = ROUND((POW10(max)) * (ufvalue - intpart));
735 intpart++;
741 temp = intpart*0.1;
742 my_modf(temp, &intpart);
743 idx = (int) ((temp -intpart +0.05)* 10.0);
744 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
745 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
748 } while (intpart && (iplace < 311));