Lines Matching refs:temp
688 double temp;
729 temp = ufvalue;
730 my_modf(temp, &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); */
756 temp = fracpart*0.1;
757 my_modf(temp, &fracpart);
758 idx = (int) ((temp -fracpart +0.05)* 10.0);
759 /* idx = (int) ((((temp/10) -fracpart) +0.05) *10); */
760 /* printf ("%lf, %lf, %ld\n", temp, fracpart, idx ); */