Lines Matching refs:n_buf
906 int n_buf; in OS_VSNPrintfEx() local
1105 int n_buf = 0; in OS_VSNPrintfEx() local
1110 while (p_buf[n_buf]) in OS_VSNPrintfEx()
1114 n_buf += 2; in OS_VSNPrintfEx()
1118 ++n_buf; in OS_VSNPrintfEx()
1124 while ((n_buf < precision) && p_buf[n_buf]) in OS_VSNPrintfEx()
1128 n_buf += 2; in OS_VSNPrintfEx()
1132 ++n_buf; in OS_VSNPrintfEx()
1138 n_buf /= 2; in OS_VSNPrintfEx()
1140 width -= n_buf; in OS_VSNPrintfEx()
1148 while (n_buf--) in OS_VSNPrintfEx()
1163 string_put_string(&str, p_buf, n_buf); in OS_VSNPrintfEx()
1177 while (n_buf--) in OS_VSNPrintfEx()
1192 string_put_string(&str, p_buf, n_buf); in OS_VSNPrintfEx()
1203 int n_buf = width; in OS_VSNPrintfEx() local
1208 if (n_buf <= 0) in OS_VSNPrintfEx()
1210 n_buf = 1; in OS_VSNPrintfEx()
1232 if (count >= n_buf) in OS_VSNPrintfEx()
1367 n_buf = 0; in OS_VSNPrintfEx()
1375 buf[n_buf++] = (char)(d + '0'); in OS_VSNPrintfEx()
1392 buf[n_buf++] = (char)(d + '0'); in OS_VSNPrintfEx()
1402 buf[n_buf++] = (char)(d + '0'); in OS_VSNPrintfEx()
1411 buf[n_buf++] = (char)((d < 10) ? (d + '0') : (d + hex_char)); in OS_VSNPrintfEx()
1418 buf[n_buf++] = '0'; in OS_VSNPrintfEx()
1425 int n_pad = precision - n_buf; 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()
1433 width -= n_prefix + n_buf; in OS_VSNPrintfEx()
1439 while (n_buf > 0) in OS_VSNPrintfEx()
1440 string_put_char(&str, buf[--n_buf]); in OS_VSNPrintfEx()