Home
last modified time | relevance | path

Searched refs:CHAR_0 (Results 1 – 4 of 4) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_substitute.c481 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()
483 group = next - CHAR_0; in pcre2_substitute()
487 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()
488 group = group * 10 + next - CHAR_0; in pcre2_substitute()
499 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
Dpcre2_compile.c387 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
486 #define ESCAPES_FIRST CHAR_0
1264 n = n * 10 + *ptr++ - CHAR_0; in read_number()
1684 case CHAR_0: in PRIV()
1685 c -= CHAR_0; in PRIV()
1686 while(i++ < 2 && ptr < ptrend && *ptr >= CHAR_0 && *ptr <= CHAR_7) in PRIV()
1687 c = c * 8 + *ptr++ - CHAR_0; in PRIV()
1708 while (ptr < ptrend && *ptr >= CHAR_0 && *ptr <= CHAR_7) in PRIV()
1711 if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ in PRIV()
1715 c = (c << 3) + (cc - CHAR_0); in PRIV()
[all …]
Dpcre2_internal.h694 #define CHAR_0 '0' macro
966 #define CHAR_0 '\060' macro
Dpcre2test.c7017 while ((c = *(++pr)) >= CHAR_0 && c <= CHAR_9) n = n * 10 + c - CHAR_0; in process_data()