Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/
Dldtoa_engine.c53 __ldtoa_engine(long double x, struct dtoa *dtoa, int max_digits, bool fmode, int max_decimals) in __ldtoa_engine() argument
121 max_digits = min(max_digits, max(1, max_decimals + decexp + 1)); in __ldtoa_engine()
134 max_digits = min(save_max_digits, max(1, max_decimals + decexp + 1)); in __ldtoa_engine()
Ddtoa.h122 __ldtoa_engine(long double x, struct dtoa *dtoa, int max_digits, bool fmode, int max_decimals);
133 __dtoa_engine(FLOAT64 x, struct dtoa *dtoa, int max_digits, bool fmode, int max_decimals);
143 int __ftoa_engine (float val, struct dtoa *ftoa, int max_digits, bool fmode, int max_decimals);
Ddtoa_engine.c65 __dtoa_engine(FLOAT64 x, struct dtoa *dtoa, int max_digits, bool fmode, int max_decimals) in __dtoa_engine() argument
192 max_digits = min(max_digits, max(1, max_decimals + decexp + 1)); in __dtoa_engine()
207 max_digits = min(save_max_digits, max(1, max_decimals + decexp + 1)); in __dtoa_engine()
Dftoa_ryu.c55 …t uint32_t ieeeMantissa, const uint32_t ieeeExponent, int max_digits, bool fmode, int max_decimals) in f2d() argument
203 max_digits = min_int(max_digits, max_int(1, max_decimals + exp + 1)); in f2d()
265 max_digits = min_int(save_max_digits, max_int(1, max_decimals + exp + 1)); in f2d()
294 __ftoa_engine(float x, struct dtoa *dtoa, int max_digits, bool fmode, int max_decimals) in __ftoa_engine() argument
328 v = f2d(ieeeMantissa, ieeeExponent, max_digits, fmode, max_decimals); in __ftoa_engine()
Ddtoa_ryu.c72 …t uint64_t ieeeMantissa, const uint32_t ieeeExponent, int max_digits, bool fmode, int max_decimals) in d2d() argument
227 max_digits = min_int(max_digits, max_int(1, max_decimals + exp + 1)); in d2d()
299 max_digits = min_int(save_max_digits, max_int(0, max_decimals + exp + 1)); in d2d()
359 __dtoa_engine(FLOAT64 x, struct dtoa *dtoa, int max_digits, bool fmode, int max_decimals) in __dtoa_engine() argument
415 v = d2d(ieeeMantissa, ieeeExponent, max_digits, fmode, max_decimals); in __dtoa_engine()