Home | History | Annotate | Download | only in stringlib

Lines Matching refs:n_prefix

381     Py_ssize_t n_prefix;

438 calc_number_widths(NumberFieldWidths *spec, Py_ssize_t n_prefix,
449 spec->n_prefix = n_prefix;
496 n_non_digit_non_padding = spec->n_sign + spec->n_prefix + spec->n_decimal +
547 return spec->n_lpadding + spec->n_sign + spec->n_prefix +
575 if (spec->n_prefix) {
578 spec->n_prefix * sizeof(STRINGLIB_CHAR));
581 for (t = 0; t < spec->n_prefix; ++t)
584 buf += spec->n_prefix;
752 Py_ssize_t n_prefix = 0; /* Count of prefix chars, (e.g., '0x') */
851 n_prefix = leading_chars_to_skip;
888 n_total = calc_number_widths(&spec, n_prefix, sign_char, pnumeric_chars,