Home
last modified time | relevance | path

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

/lvgl-2.7.6/src/lv_misc/
Dlv_printf.c209 … bool negative, unsigned int base, unsigned int prec, unsigned int width, unsigned int flags) in _ntoa_format() argument
216 while((len < prec) && (len < PRINTF_NTOA_BUFFER_SIZE)) { in _ntoa_format()
226 if(!(flags & FLAGS_PRECISION) && len && ((len == prec) || (len == width))) { in _ntoa_format()
264 … unsigned long base, unsigned int prec, unsigned int width, unsigned int flags) in _ntoa_long() argument
283 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long()
290 … bool negative, unsigned long long base, unsigned int prec, unsigned int width, unsigned int flags) in _ntoa_long_long() argument
309 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long_long()
318 … _etoa(out_fct_type out, char * buffer, size_t idx, size_t maxlen, double value, unsigned int prec,
324 … _ftoa(out_fct_type out, char * buffer, size_t idx, size_t maxlen, double value, unsigned int prec, in _ftoa() argument
347 return _etoa(out, buffer, idx, maxlen, value, prec, width, flags); in _ftoa()
[all …]