Lines Matching defs:number
1734 /* Find the maximum code point and count the number of surrogate pairs so a
2322 // Overallocate to reduce the number of realloc
2714 /* maximum number of characters required for output of %lld or %p.
2958 char number[MAX_LONG_LONG_CHARS];
2960 len = sprintf(number, "%p", va_arg(*vargs, void*));
2964 if (number[1] == 'X')
2965 number[1] = 'x';
2966 else if (number[1] != 'x') {
2967 memmove(number + 2, number,
2968 strlen(number) + 1);
2969 number[0] = '0';
2970 number[1] = 'x';
2974 if (_PyUnicodeWriter_WriteASCIIString(writer, number, len) < 0)
3245 - If w is NULL: return the number of wide characters (including the null
3248 - Otherwise: return the number of wide characters (excluding the null
4695 * all the shift state (seen bits, number of bits seen, high
5256 (in number of wchar_t units) into *wlen (if wlen is set).
7614 PyErr_SetString(PyExc_ValueError, "invalid code page number");
8044 PyErr_SetString(PyExc_ValueError, "invalid code page number");
9478 * @n_digits: The number of digits in the string, in which we want
9493 * Return value: -1 on error, number of characters otherwise.
11587 Return the number of non-overlapping occurrences of substring sub in\n\
12434 Concatenate any number of strings.
12812 Maximum number of occurrences to replace.
13165 Maximum number of splits (starting from the left).
13803 /* overallocate to limit the number of realloc() */
13816 /* overallocate to limit the number of realloc() */
14416 * prec minimum number of digits; 0-fill on left if needed
14429 int len; /* number of characters */
14551 * Return 1 if the number has been formatted into the writer,
14552 * 0 if the number has been formatted into *p_output
14566 /* make sure number is a type of integer for o, x, and X */
14641 "%%%c format: a real number is required, "