Home | History | Annotate | Download | only in stringlib

Lines Matching refs:n_grouped_digits

386     Py_ssize_t n_grouped_digits; /* Space taken up by the digits, including

398 the n_grouped_digits width. */
510 spec->n_grouped_digits = 0;
512 n_grouped_digits = STRINGLIB_GROUPING(NULL, 0, NULL,
523 (n_non_digit_non_padding + spec->n_grouped_digits);
548 spec->n_spadding + spec->n_grouped_digits + spec->n_decimal +
597 STRINGLIB_GROUPING(buf, spec->n_grouped_digits, digits,
601 assert(r == spec->n_grouped_digits);
607 for (t = 0; t < spec->n_grouped_digits; ++t)
610 buf += spec->n_grouped_digits;