Home
last modified time | relevance | path

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

/DragonOS/kernel/src/libs/
H A Dprintk.c25 static char *write_num(char *str, ul num, int base, int field_width, int precision, int flags);
27 static char *write_float_point_num(char *str, double num, int field_width, int precision, int flags…
66 int precision; //精度 in __do_vsprintf() local
154 precision = -1; in __do_vsprintf()
160 precision = va_arg(args, int); in __do_vsprintf()
165 precision = skip_and_atoi(&fmt); in __do_vsprintf()
216 if (precision < 0) in __do_vsprintf()
219 precision = len; in __do_vsprintf()
222 else if (len > precision) in __do_vsprintf()
224 len = precision; in __do_vsprintf()
[all …]