Lines Matching defs:digit
493 Py_UCS4 digit = PyUnicode_READ(kind, buf, next);
495 switch (digit) {
498 c |= (digit - '0'); break;
501 c |= (digit - 'a' + 10); break;
504 c |= (digit - 'A' + 10); break;
518 Py_UCS4 digit = PyUnicode_READ(kind, buf, next);
520 switch (digit) {
523 c2 |= (digit - '0'); break;
526 c2 |= (digit - 'a' + 10); break;
529 c2 |= (digit - 'A' + 10); break;
950 /* if it starts with 0 we only expect one integer digit */
960 /* if the next char is '.' followed by a digit then read all float digits */
978 /* if we got a digit, then parse as float. if not, backtrack */