Home | History | Annotate | Download | only in dmg_fp

Lines Matching refs:decpt

34 	int decpt, j, sign;
45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
48 if (decpt == 9999) /* Infinity or Nan */ {
52 if (decpt <= -4 || decpt > se - s + 5) {
60 /* sprintf(b, "%+.2d", decpt - 1); */
61 if (--decpt < 0) {
63 decpt = -decpt;
67 for(j = 2, k = 10; 10*k <= decpt; j++, k *= 10) {}
69 i = decpt / k;
73 decpt -= i*k;
74 decpt *= 10;
78 else if (decpt <= 0) {
80 for(; decpt < 0; decpt++)
87 if (--decpt == 0 && *s)
90 for(; decpt > 0; decpt--)