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

/freebsd-11-stable/contrib/apr/strings/
H A Dapr_snprintf.c78 * the number of digits is specified by ndigit
175 static char *apr_gcvt(double number, int ndigit, char *buf, boolean_e altform) argument
182 p1 = apr_ecvt(number, ndigit, &decpt, &sign, buf1);
186 for (i = ndigit - 1; i > 0 && p1[i] == '0'; i--)
187 ndigit--;
188 if ((decpt >= 0 && decpt - ndigit > 4)
193 for (i = 1; i < ndigit; i++)
217 for (i = 1; i <= ndigit; i++) {
222 if (ndigit < decpt) {
223 while (ndigit
[all...]
/freebsd-11-stable/contrib/binutils/gas/
H A Dexpr.c377 int ndigit = 0;
384 ndigit++;
388 if (ndigit > 8)
373 int ndigit = 0; local
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp350 INTERCEPTOR(char *, gcvt, double number, SIZE_T ndigit, char *buf) { argument
352 char *res = REAL(gcvt)(number, ndigit, buf);

Completed in 740 milliseconds