Searched refs:Py_ISDIGIT (Results 1 – 9 of 9) sorted by relevance
217 if (!Py_ISDIGIT(*p) && *p != '.') in _PyOS_ascii_strtod()228 while (Py_ISDIGIT(*p)) in _PyOS_ascii_strtod()236 while (Py_ISDIGIT(*p)) in _PyOS_ascii_strtod()243 while (Py_ISDIGIT(*p)) in _PyOS_ascii_strtod()459 while (Py_ISDIGIT(*buffer)) in change_decimal_from_locale_to_dot()502 while (*p && Py_ISDIGIT(*p)) { in ensure_minimum_exponent_length()563 while (Py_ISDIGIT(*p)) in remove_trailing_zeros()571 while (Py_ISDIGIT(*p)) in remove_trailing_zeros()614 while (*p && Py_ISDIGIT(*p)) in ensure_decimal_point()619 if (Py_ISDIGIT(*(p+1))) { in ensure_decimal_point()[all …]
450 while (pos<end && Py_ISDIGIT(PyUnicode_READ(kind, data, pos))) in parse_number()
24 #define Py_ISDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT) macro
161 if (len == 1 && Py_ISDIGIT(*p)) in _Py_bytes_isdigit()170 if (!Py_ISDIGIT(*p)) in _Py_bytes_isdigit()
260 while (Py_ISDIGIT(*f)) in PyBytes_FromFormatV()267 for (; Py_ISDIGIT(*f); f++) { in PyBytes_FromFormatV()
2864 if (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()2867 while (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()2880 if (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()2883 while (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()
92 ((ch) <= '9' && Py_ISDIGIT(ch))
2182 :c:macro:`Py_ISDIGIT`,
14876 new Py_ISDIGIT / Py_ISALPHA / Py_TOLOWER, etc. in pctypes.h.