Lines Matching refs:width
951 int flag = 0, width = 0, precision = -1, radix = 10; in OS_VSNPrintfEx() local
982 ++s, width = va_arg(vlist, int); in OS_VSNPrintfEx()
983 if (width < 0) in OS_VSNPrintfEx()
984 width = -width, flag |= flag_minus; in OS_VSNPrintfEx()
989 width = (width * 10) + *s++ - '0'; in OS_VSNPrintfEx()
1055 width -= 1; in OS_VSNPrintfEx()
1075 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()
1080 string_fill_char(&str, pad, width); in OS_VSNPrintfEx()
1143 width -= n_buf; in OS_VSNPrintfEx()
1168 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()
1173 string_fill_char(&str, pad, width); in OS_VSNPrintfEx()
1206 int n_buf = width; in OS_VSNPrintfEx()
1431 if (n_pad < width - n_buf - n_prefix) in OS_VSNPrintfEx()
1432 n_pad = width - n_buf - n_prefix; in OS_VSNPrintfEx()
1435 width -= n_pad; in OS_VSNPrintfEx()
1436 width -= n_prefix + n_buf; in OS_VSNPrintfEx()
1438 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()
1445 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()