Searched refs:IS_DIGIT (Results 1 – 1 of 1) sorted by relevance
408 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) macro1342 if (ptr >= ptrend || !IS_DIGIT(*ptr)) return FALSE; in read_number()1343 while (ptr < ptrend && IS_DIGIT(*ptr)) in read_number()1420 if (IS_DIGIT(c)) continue; in read_repeat_counts()2434 if (is_group && IS_DIGIT(*ptr)) in read_name()4193 if (ptrend - ptr < 2 || !IS_DIGIT(ptr[1])) in parse_regex()4324 while (ptr < ptrend && IS_DIGIT(*ptr)) in parse_regex()4441 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex()4499 if (!IS_DIGIT(name[i])) break; in parse_regex()9982 if (!IS_DIGIT(ptr[pp])) in pcre2_compile()[all …]
Completed in 24 milliseconds