CHAR_0 533 ext/pcre/pcrelib/pcre_compile.c #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9) CHAR_0 799 ext/pcre/pcrelib/pcre_compile.c else if (c < CHAR_0 || c > CHAR_z) {} CHAR_0 800 ext/pcre/pcrelib/pcre_compile.c else if ((i = escapes[c - CHAR_0]) != 0) { if (i > 0) c = (pcre_uint32)i; else escape = -i; } CHAR_0 842 ext/pcre/pcrelib/pcre_compile.c c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); CHAR_0 845 ext/pcre/pcrelib/pcre_compile.c c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); CHAR_0 930 ext/pcre/pcrelib/pcre_compile.c s = s * 10 + (int)(*(++ptr) - CHAR_0); CHAR_0 984 ext/pcre/pcrelib/pcre_compile.c s = (int)(c -CHAR_0); CHAR_0 993 ext/pcre/pcrelib/pcre_compile.c s = s * 10 + (int)(*(++ptr) - CHAR_0); CHAR_0 1027 ext/pcre/pcrelib/pcre_compile.c case CHAR_0: CHAR_0 1028 ext/pcre/pcrelib/pcre_compile.c c -= CHAR_0; CHAR_0 1029 ext/pcre/pcrelib/pcre_compile.c while(i++ < 2 && ptr[1] >= CHAR_0 && ptr[1] <= CHAR_7) CHAR_0 1030 ext/pcre/pcrelib/pcre_compile.c c = c * 8 + *(++ptr) - CHAR_0; CHAR_0 1054 ext/pcre/pcrelib/pcre_compile.c c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); CHAR_0 1057 ext/pcre/pcrelib/pcre_compile.c c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); CHAR_0 1073 ext/pcre/pcrelib/pcre_compile.c if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ CHAR_0 1081 ext/pcre/pcrelib/pcre_compile.c c = (c << 4) + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); CHAR_0 1084 ext/pcre/pcrelib/pcre_compile.c c = (c << 4) + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); CHAR_0 1122 ext/pcre/pcrelib/pcre_compile.c c = c * 16 + cc - ((cc < CHAR_A)? CHAR_0 : (CHAR_A - 10)); CHAR_0 1125 ext/pcre/pcrelib/pcre_compile.c c = c * 16 + cc - ((cc >= CHAR_0)? CHAR_0 : (CHAR_A - 10)); CHAR_0 1319 ext/pcre/pcrelib/pcre_compile.c while (IS_DIGIT(*p)) min = min * 10 + (int)(*p++ - CHAR_0); CHAR_0 1334 ext/pcre/pcrelib/pcre_compile.c while(IS_DIGIT(*p)) max = max * 10 + (int)(*p++ - CHAR_0); CHAR_0 5825 ext/pcre/pcrelib/pcre_compile.c recno = (IS_DIGIT(*ptr))? recno * 10 + (int)(*ptr - CHAR_0) : -1; CHAR_0 5920 ext/pcre/pcrelib/pcre_compile.c recno = recno * 10 + name[i] - CHAR_0; CHAR_0 6018 ext/pcre/pcrelib/pcre_compile.c n = n * 10 + *ptr++ - CHAR_0; CHAR_0 6284 ext/pcre/pcrelib/pcre_compile.c case CHAR_0: case CHAR_1: case CHAR_2: case CHAR_3: case CHAR_4: CHAR_0 6316 ext/pcre/pcrelib/pcre_compile.c recno = recno * 10 + *ptr++ - CHAR_0;