Searched refs:IS_DIGIT (Results 1 – 1 of 1) sorted by relevance
406 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) macro1337 if (ptr >= ptrend || !IS_DIGIT(*ptr)) return FALSE; in read_number()1338 while (ptr < ptrend && IS_DIGIT(*ptr)) in read_number()2328 if (is_group && IS_DIGIT(*ptr)) in read_name()4087 if (ptrend - ptr < 2 || !IS_DIGIT(ptr[1])) in parse_regex()4164 if (*ptr != CHAR_RIGHT_PARENTHESIS && !IS_DIGIT(*ptr)) in parse_regex()4218 while (ptr < ptrend && IS_DIGIT(*ptr)) in parse_regex()4334 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex()4392 if (!IS_DIGIT(name[i])) break; in parse_regex()9858 if (!IS_DIGIT(ptr[pp])) in pcre2_compile()[all …]
Completed in 33 milliseconds