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

/forgerock/web-agents-v4/pcre/
H A Dpcre_maketables.c142 if (isalnum(i) || i == '_') x += ctype_word;
H A Dpcre_exec.c2208 prev_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0;
2232 cur_is_word = c < 256 && (md->ctypes[c] & ctype_word) != 0;
2260 && ((md->ctypes[eptr[-1]] & ctype_word) != 0);
2284 && ((md->ctypes[*eptr] & ctype_word) != 0);
2419 (md->ctypes[c] & ctype_word) != 0
2436 (md->ctypes[c] & ctype_word) == 0
4593 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0)
4610 if (cc >= 128 || (md->ctypes[cc] & ctype_word) == 0)
4845 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0)
4859 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word)
[all...]
H A Dpcre_dfa_exec.c266 ctype_word, ctype_word,
274 ctype_word, 0,
1033 left_word = d < 256 && (ctypes[d] & ctype_word) != 0;
1050 right_word = c < 256 && (ctypes[c] & ctype_word) != 0;
H A Dpcre_compile.c3483 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE;
3487 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE;
6694 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0)
6700 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0)
6882 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0)
6955 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++;
7073 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) ptr++;
H A Dpcre_jit_compile.c4102 SLJIT_COMPILE_ASSERT(ctype_word == 0x10, ctype_word_must_be_16);
4142 OP2(SLJIT_LSHR, TMP1, 0, TMP1, 0, SLJIT_IMM, 4 /* ctype_word */);
4187 OP2(SLJIT_LSHR, TMP2, 0, TMP2, 0, SLJIT_IMM, 4 /* ctype_word */);
5305 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_word);

Completed in 74 milliseconds