Searched defs:ndigits (Results 1 - 2 of 2) sorted by last modified time

/bionic/libc/stdio/
H A Dvfprintf.c1229 cvt(double value, int ndigits, int flags, char *sign, int *decpt, int ch, argument
1236 mode = 3; /* ndigits after the decimal point */
1238 /* To obtain ndigits after the decimal point for the 'e'
1239 * and 'E' formats, round to ndigits + 1 significant
1243 ndigits++;
1245 mode = 2; /* ndigits significant digits */
1253 digits = __dtoa(value, mode, ndigits, decpt, &dsgn, &rve);
1255 bp = digits + ndigits;
1258 *decpt = -ndigits + 1;
/bionic/libc/upstream-netbsd/libc/regex/
H A Dregcomp.c738 int ndigits = 0; local
744 ndigits++;
747 REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);

Completed in 106 milliseconds