Home | History | Annotate | Download | only in gdtoa

Lines Matching refs:ndigits

80 	(d0, mode, ndigits, decpt, sign, rve)
81 double d0; int mode, ndigits, *decpt, *sign; char **rve;
83 (double d0, int mode, int ndigits, int *decpt, int *sign, char **rve)
86 /* Arguments ndigits, decpt, sign are similar to those
98 2 ==> max(1,ndigits) significant digits. This gives a
101 3 ==> through ndigits past the decimal point. This
104 ndigits can be negative.
313 ndigits = 0;
319 if (ndigits <= 0)
320 ndigits = 1;
321 ilim = ilim1 = i = ndigits;
327 i = ndigits + k + 1;
449 if (ndigits < 0 && ilim <= 0) {
634 k = -1 - ndigits;