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

/forgerock/web-agents-v4/pcre/
H A Dpcre_maketables.c141 if (isxdigit(i)) x += ctype_xdigit;
H A Dpcre_compile.c569 Then we can use ctype_digit and ctype_xdigit in the code. */
1055 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1056 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0
1057 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0
1058 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0)
1307 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1308 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0)
1344 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0)
1372 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++;
1394 while (i++ < 2 && MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) !
[all...]

Completed in 36 milliseconds