Searched refs:CHAR_0 (Results 1 – 4 of 4) sorted by relevance
451 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()453 group = next - CHAR_0; in pcre2_substitute()457 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()458 group = group * 10 + next - CHAR_0; in pcre2_substitute()469 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
188 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)287 #define ESCAPES_FIRST CHAR_01985 s = s * 10 + (unsigned int)(*(++ptr) - CHAR_0); in PRIV()2040 s = c - CHAR_0; in PRIV()2049 s = s * 10 + (unsigned int)(*(++ptr) - CHAR_0); in PRIV()2085 case CHAR_0: in PRIV()2086 c -= CHAR_0; in PRIV()2087 while(i++ < 2 && ptr[1] >= CHAR_0 && ptr[1] <= CHAR_7) in PRIV()2088 c = c * 8 + *(++ptr) - CHAR_0; in PRIV()2104 while (*ptr >= CHAR_0 && *ptr <= CHAR_7) in PRIV()[all …]
709 #define CHAR_0 '0' macro978 #define CHAR_0 '\060' macro
6148 while ((c = *(++pr)) >= CHAR_0 && c <= CHAR_9) n = n * 10 + c - CHAR_0; in process_data()