Searched refs:ndigits (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/stdio/
H A Dvfprintf.c1228 cvt(double value, int ndigits, int flags, char *sign, int *decpt, int ch, argument
1235 mode = 3; /* ndigits after the decimal point */
1237 /* To obtain ndigits after the decimal point for the 'e'
1238 * and 'E' formats, round to ndigits + 1 significant
1242 ndigits++;
1244 mode = 2; /* ndigits significant digits */
1252 digits = __dtoa(value, mode, ndigits, decpt, &dsgn, &rve);
1254 bp = digits + ndigits;
1257 *decpt = -ndigits + 1;
/bionic/libc/stdlib/
H A Dstrtod.c358 extern "C" char *__dtoa(double d, int mode, int ndigits,
2073 (_d, mode, ndigits, decpt, sign, rve)
2074 double _d; int mode, ndigits, *decpt, *sign; char **rve;
2076 (double _d, int mode, int ndigits, int *decpt, int *sign, char **rve)
2079 /* Arguments ndigits, decpt, sign are similar to those
2091 2 ==> max(1,ndigits) significant digits. This gives a
2094 3 ==> through ndigits past the decimal point. This
2097 ndigits can be negative.
2282 ndigits = 0;
2288 if (ndigits <
[all...]
/bionic/libc/regex/
H A Dregcomp.c607 int ndigits = 0; local
611 ndigits++;
614 REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);

Completed in 152 milliseconds