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()
408 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)507 #define ESCAPES_FIRST CHAR_01347 n = n * 10 + *ptr++ - CHAR_0; in read_number()1835 case CHAR_0: in PRIV()1836 c -= CHAR_0; in PRIV()1837 while(i++ < 2 && ptr < ptrend && *ptr >= CHAR_0 && *ptr <= CHAR_7) in PRIV()1838 c = c * 8 + *ptr++ - CHAR_0; in PRIV()1859 while (ptr < ptrend && *ptr >= CHAR_0 && *ptr <= CHAR_7) in PRIV()1862 if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ in PRIV()1866 c = (c << 3) + (cc - CHAR_0); in PRIV()[all …]
701 #define CHAR_0 '0' macro998 #define CHAR_0 '\060' macro
7448 while ((c = *(++pr)) >= CHAR_0 && c <= CHAR_9) n = n * 10 + c - CHAR_0; in process_data()
52 CHAR_0: 48, /* 0 */ property