Lines Matching refs:n_chars
9538 Py_ssize_t n_chars;
9568 n_chars = Py_MAX(0, Py_MIN(remaining, len));
9570 /* Use n_zero zero's and n_chars chars */
9573 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
9578 n_chars, n_zeros,
9585 remaining -= n_chars;
9599 n_chars = Py_MAX(0, Py_MIN(remaining, len));
9601 /* Use n_zero zero's and n_chars chars */
9602 count += (use_separator ? thousands_sep_len : 0) + n_zeros + n_chars;
9607 n_chars, n_zeros,