Home
last modified time | relevance | path

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

/picolibc-3.5.0-3.4.0/newlib/libc/stdlib/
Dldtoa.c87 static void etoasc (short unsigned int *x, char *string, int ndec, int ndigs,
2838 __int32_t ndec; in __ldtoa() local
2843 ndec = expon * 146 / 485 + ndigits; in __ldtoa()
2846 ndec = ndigits; in __ldtoa()
2847 if (ndec < 0) in __ldtoa()
2848 ndec = 0; in __ldtoa()
2849 if (ndec > NDEC) in __ldtoa()
2850 ndec = NDEC; in __ldtoa()
2853 if (ndec > NDEC_SML) in __ldtoa()
2855 outbuf = (char *) malloc (ndec + MAX_EXP_DIGITS + 10); in __ldtoa()
[all …]