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

/forgerock/web-agents-v4/pcre/
H A Dpcre_compile.c575 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
1022 else if (c < CHAR_0 || c > CHAR_z) {}
1023 else if ((i = escapes[c - CHAR_0]) != 0)
1066 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
1069 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
1154 s = s * 10 + (int)(*(++ptr) - CHAR_0);
1212 s = (int)(c -CHAR_0);
1221 s = s * 10 + (int)(*(++ptr) - CHAR_0);
1253 case CHAR_0
[all...]

Completed in 25 milliseconds