Searched refs:ndig_req (Results 1 – 4 of 4) sorted by relevance
| /freebsd/lib/libc/stdlib/ |
| H A D | strfromd.c | 16 int prec, decpt, signflag, ret, mode, ndig_req; in strfromd() local 35 __sf_decimal_mode(lc, prec, &mode, &ndig_req); in strfromd() 37 digits = dtoa(fp, mode, ndig_req, &decpt, &signflag, &dend); in strfromd()
|
| H A D | strfroml.c | 17 int prec, decpt, signflag, ret, mode, ndig_req; in strfroml() local 36 __sf_decimal_mode(lc, prec, &mode, &ndig_req); in strfroml() 38 digits = __ldtoa(&fp, mode, ndig_req, &decpt, &signflag, &dend); in strfroml()
|
| H A D | strfromf.c | 16 int prec, decpt, signflag, ret, mode, ndig_req; in strfromf() local 37 __sf_decimal_mode(lc, prec, &mode, &ndig_req); in strfromf() 39 digits = dtoa(dbl, mode, ndig_req, &decpt, &signflag, &dend); in strfromf()
|
| H A D | strfrom.c | 410 __sf_decimal_mode(char lc, int prec, int *mode, int *ndig_req) in __sf_decimal_mode() argument 415 *ndig_req = prec + 1; in __sf_decimal_mode() 419 *ndig_req = prec; in __sf_decimal_mode() 423 *ndig_req = prec == 0 ? 1 : prec; in __sf_decimal_mode()
|