Home
last modified time | relevance | path

Searched refs:ndec (Results 1 – 1 of 1) sorted by relevance

/picolibc-latest/newlib/libc/stdlib/
Dldtoa.c94 static void etoasc (short unsigned int *x, char *string, int ndec, int ndigs,
2845 __int32_t ndec; in __ldtoa() local
2850 ndec = expon * 146 / 485 + ndigits; in __ldtoa()
2853 ndec = ndigits; in __ldtoa()
2854 if (ndec < 0) in __ldtoa()
2855 ndec = 0; in __ldtoa()
2856 if (ndec > NDEC) in __ldtoa()
2857 ndec = NDEC; in __ldtoa()
2860 if (ndec > NDEC_SML) in __ldtoa()
2862 outbuf = (char *) malloc (ndec + MAX_EXP_DIGITS + 10); in __ldtoa()
[all …]