Searched refs:CHAR_0 (Results 1 – 5 of 5) sorted by relevance
572 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()574 group = next - CHAR_0; in pcre2_substitute()578 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()579 group = group * 10 + next - CHAR_0; in pcre2_substitute()590 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
282 if (((c >= CHAR_0 && c <= CHAR_9) || in PRIV()
408 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)507 #define ESCAPES_FIRST CHAR_01353 n = n * 10 + *ptr++ - CHAR_0; in read_number()1896 case CHAR_0: in PRIV()1897 c -= CHAR_0; in PRIV()1899 c = c * 8 + *ptr++ - CHAR_0; in PRIV()1933 c = (c << 3) + (cc - CHAR_0); in PRIV()4539 n = n * 10 + *ptr++ - CHAR_0; in parse_regex()4652 minor = (*ptr++ - CHAR_0) * 10; in parse_regex()4654 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex()[all …]
719 #define CHAR_0 '0' macro1016 #define CHAR_0 '\060' macro
8406 SET_CHAR_OFFSET(CHAR_0); in compile_xclass_matchingpath()8407 OP2U(SLJIT_SUB | SLJIT_SET_LESS_EQUAL, TMP1, 0, SLJIT_IMM, CHAR_9 - CHAR_0); in compile_xclass_matchingpath()
Completed in 69 milliseconds