D | lv_printf.c | 198 … bool negative, unsigned int base, unsigned int prec, unsigned int width, unsigned int flags) in _ntoa_format() argument 202 if(width && (flags & FLAGS_ZEROPAD) && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ntoa_format() 236 if(negative) { in _ntoa_format() 251 …ong(out_fct_type out, char * buffer, size_t idx, size_t maxlen, unsigned long value, bool negative, in _ntoa_long() argument 271 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long() 277 … bool negative, unsigned long long base, unsigned int prec, unsigned int width, unsigned int flags) in _ntoa_long_long() argument 296 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long_long() 339 bool negative = false; in _ftoa() local 341 negative = true; in _ftoa() 413 if(width && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ftoa() [all …]
|