Home
last modified time | relevance | path

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

/external/pcre/dist/
Dpcre_maketables.c141 if (isxdigit(i)) x += ctype_xdigit; in pcre_maketables()
Ddftables.c181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
Dpcre_compile.c1061 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1062 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()
1063 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()
1064 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()
1313 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()
1314 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()
1350 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) in check_escape()
1378 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++; in check_escape()
1400 while (i++ < 2 && MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0) in check_escape()
Dpcre_internal.h2589 #define ctype_xdigit 0x08 macro