Searched defs:ndigits (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dldtoa.c56 ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign, char **rve) argument
106 ret = gdtoa(&fpi, be, (ULong *)bits, &kind, mode, ndigits, decpt, rve);
111 return dtoa((double)*ld, mode, ndigits, decpt, sign, rve);
H A Dgdtoa.c121 (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, int *decpt, char **rve)
123 /* Arguments ndigits and decpt are similar to the second and third
135 2 ==> max(1,ndigits) significant digits. This gives a
138 3 ==> through ndigits past the decimal point. This
141 ndigits can be negative.
297 ndigits = 0;
303 if (ndigits <= 0)
304 ndigits = 1;
305 ilim = ilim1 = i = ndigits;
311 i = ndigits
120 gdtoa(FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, int *decpt, char **rve) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dvfwprintf.c1972 cvt(double value, int ndigits, int flags, char *sign, int *decpt, int ch, argument
1983 mode = 3; /* ndigits after the decimal point */
1985 /* To obtain ndigits after the decimal point for the 'e'
1986 * and 'E' formats, round to ndigits + 1 significant
1990 ndigits++;
1992 mode = 2; /* ndigits significant digits */
1995 digits = __dtoa(value, mode, ndigits, decpt, &dsgn, &rve);
2004 bp = digits + ndigits;
2007 *decpt = -ndigits + 1;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c122 int ndigits = 0; local
142 ++ndigits;
145 v = _PyLong_New(ndigits);
148 v->ob_size = negative ? -ndigits : ndigits;
165 int ndigits = 0; local
170 ++ndigits;
173 v = _PyLong_New(ndigits);
176 Py_SIZE(v) = ndigits;
494 Py_ssize_t ndigits; local
529 Py_ssize_t ndigits; /* number of Python long digits */ local
638 Py_ssize_t ndigits; /* |v->ob_size| */ local
849 int ndigits = 0; local
891 int ndigits = 0; local
4133 Py_ssize_t ndigits, msd_bits = 0; local
[all...]

Completed in 52 milliseconds