Lines Matching defs:digits
2715 We need at most ceil(log10(256)*SIZEOF_LONG_LONG) digits,
6686 /* Make sure that the first two digits are zero */
6789 /* \uHHHH with 4 hex digits, \U00HHHHHH with 8 */
9476 * @digits: Digits we're reading from. If count is non-NULL, this is unused.
9477 * @d_pos: Start of digits string.
9478 * @n_digits: The number of digits in the string, in which we want
9480 * @min_width: The minimum width of the digits in the output string.
9499 PyObject *digits,
9509 assert(digits != NULL);
9513 assert(digits == NULL);
9520 if (digits != NULL) {
9521 if (PyUnicode_READY(digits) == -1) {
9547 /* if digits are not grouped, thousands separator
9555 assert(digits_pos <= PyUnicode_GET_LENGTH(digits));
9577 digits, &digits_pos,
9606 digits, &digits_pos,
12212 A string is a digit string if all characters in the string are digits and there
12306 letters, digits, underscore). However, given the current
14411 * set in flags. The case of hex digits will be correct,
14412 * There will be at least prec digits, zero-filled on the left if
14416 * prec minimum number of digits; 0-fill on left if needed