Lines Matching refs:n_digits
429 Py_ssize_t n_digits; /* The number of digits before a decimal
483 spec->n_digits = n_end - n_start - n_remainder - (has_decimal?1:0);
542 if (spec->n_digits == 0)
551 NULL, 0, spec->n_digits,
646 if (spec->n_digits != 0) {
650 digits, d_pos, spec->n_digits,
656 d_pos += spec->n_digits;
872 Py_ssize_t n_digits; /* count of digits need from the computed
929 n_digits = 1;
989 n_digits = PyUnicode_GET_LENGTH(tmp);
1002 n_digits -= leading_chars_to_skip;
1014 inumeric_chars + n_digits, n_remainder, 0,
1047 Py_ssize_t n_digits;
1115 n_digits = strlen(buf);
1121 buf[n_digits] = '%';
1122 n_digits += 1;
1131 result = _PyUnicodeWriter_WriteASCIIString(writer, buf, n_digits);
1138 unicode_tmp = _PyUnicode_FromASCII(buf, n_digits);
1149 --n_digits;
1154 parse_number(unicode_tmp, index, index + n_digits, &n_remainder, &has_decimal);
1164 index + n_digits, n_remainder, has_decimal,