Lines Matching refs:width
948 int flag = 0, width = 0, precision = -1, radix = 10; in OS_VSNPrintfEx() local
979 ++s, width = va_arg(vlist, int); in OS_VSNPrintfEx()
980 if (width < 0) in OS_VSNPrintfEx()
981 width = -width, flag |= flag_minus; in OS_VSNPrintfEx()
986 width = (width * 10) + *s++ - '0'; in OS_VSNPrintfEx()
1052 width -= 1; in OS_VSNPrintfEx()
1072 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()
1077 string_fill_char(&str, pad, width); in OS_VSNPrintfEx()
1140 width -= n_buf; in OS_VSNPrintfEx()
1165 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()
1170 string_fill_char(&str, pad, width); in OS_VSNPrintfEx()
1203 int n_buf = width; in OS_VSNPrintfEx()
1428 if (n_pad < width - n_buf - n_prefix) in OS_VSNPrintfEx()
1429 n_pad = width - n_buf - n_prefix; in OS_VSNPrintfEx()
1432 width -= n_pad; in OS_VSNPrintfEx()
1433 width -= n_prefix + n_buf; in OS_VSNPrintfEx()
1435 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()
1442 string_fill_char(&str, ' ', width); in OS_VSNPrintfEx()