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

/forgerock/web-agents-v4/pcre/
H A Dpcre_maketables.c140 if (isdigit(i)) x += ctype_digit;
H A Dpcre_exec.c2351 (md->ctypes[c] & ctype_digit) != 0
2368 (md->ctypes[c] & ctype_digit) == 0
4527 if (c < 128 && (md->ctypes[c] & ctype_digit) != 0)
4542 if (cc >= 128 || (md->ctypes[cc] & ctype_digit) == 0)
4789 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0)
4803 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0)
5221 if (c < 256 && (md->ctypes[c] & ctype_digit) != 0)
5226 if (c >= 256 || (md->ctypes[c] & ctype_digit) == 0)
5362 if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH);
5366 if (!MAX_255(c) || (md->ctypes[c] & ctype_digit)
[all...]
H A Dpcre_dfa_exec.c264 ctype_digit, ctype_digit,
272 ctype_digit, 0,
H A Dpcre_compile.c569 Then we can use ctype_digit and ctype_xdigit in the code. */
3467 if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE;
3471 if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE;
H A Dpcre_jit_compile.c5279 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit);

Completed in 94 milliseconds