Home
last modified time | relevance | path

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

/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_substitute.c550 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()
552 group = next - CHAR_0; in pcre2_substitute()
556 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()
557 group = group * 10 + next - CHAR_0; in pcre2_substitute()
568 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
H A Dpcre2_compile.c406 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
505 #define ESCAPES_FIRST CHAR_0
1340 n = n * 10 + *ptr++ - CHAR_0; in read_number()
1810 case CHAR_0: in PRIV()
1811 c -= CHAR_0; in PRIV()
1813 c = c * 8 + *ptr++ - CHAR_0; in PRIV()
1841 c = (c << 3) + (cc - CHAR_0); in PRIV()
4220 n = n * 10 + *ptr++ - CHAR_0; in parse_regex()
4333 minor = (*ptr++ - CHAR_0) * 10; in parse_regex()
4334 if (IS_DIGIT(*ptr)) minor += *ptr++ - CHAR_0; in parse_regex()
[all …]
H A Dpcre2_internal.h702 #define CHAR_0 '0' macro
992 #define CHAR_0 '\060' macro

Completed in 43 milliseconds