Searched refs:CHAR_0 (Results 1 – 3 of 3) sorted by relevance
569 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()571 group = next - CHAR_0; in pcre2_substitute()575 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()576 group = group * 10 + next - CHAR_0; in pcre2_substitute()587 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
408 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)507 #define ESCAPES_FIRST CHAR_01345 n = n * 10 + *ptr++ - CHAR_0; in read_number()1833 case CHAR_0: in PRIV()1834 c -= CHAR_0; in PRIV()1836 c = c * 8 + *ptr++ - CHAR_0; in PRIV()1864 c = (c << 3) + (cc - CHAR_0); in PRIV()4326 n = n * 10 + *ptr++ - CHAR_0; in parse_regex()4439 minor = (*ptr++ - CHAR_0) * 10; in parse_regex()4441 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex()[all …]
702 #define CHAR_0 '0' macro999 #define CHAR_0 '\060' macro
Completed in 40 milliseconds