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

/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_compile.c586 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
1031 else if (c < CHAR_0 || c > CHAR_z) {}
1032 else if ((i = escapes[c - CHAR_0]) != 0)
1075 c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10));
1078 c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10));
1163 s = s * 10 + (int)(*(++ptr) - CHAR_0);
1221 s = (int)(c -CHAR_0);
1230 s = s * 10 + (int)(*(++ptr) - CHAR_0);
1262 case CHAR_0
[all...]

Completed in 40 milliseconds