Searched refs:ctypes (Results 1 - 5 of 5) sorted by relevance
/forgerock/web-agents-v4/pcre/ |
H A D | pcre_exec.c | 2208 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); 2351 (md->ctypes[c] & ctype_digit) != 0 2368 (md->ctypes[c] & ctype_digit) == 0 2385 (md->ctypes[c] & ctype_space) != 0 2402 (md->ctypes[c] & ctype_space) == 0 2419 (md->ctypes[c] & ctype_word) != 0 2436 (md->ctypes[ [all...] |
H A D | pcre_dfa_exec.c | 412 const pcre_uint8 *ctypes, *lcc, *fcc; local 446 ctypes = md->tables + ctypes_offset; 995 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0) 1004 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0)) 1033 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; 1050 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; 1181 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) 1212 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) 1242 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) 1270 ((ctypes[ [all...] |
H A D | pcre_compile.c | 3467 if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE; 3471 if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE; 3475 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE; 3479 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE; 3483 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE; 3487 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE; 4618 while (MAX_255(c) && (cd->ctypes[c] & ctype_space) != 0) c = *(++ptr); 5558 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; 6437 || (MAX_255(ptr[1]) && ((cd->ctypes[ptr[1]] & ctype_letter) != 0)))) 6446 while (MAX_255(*ptr) && (cd->ctypes[*pt [all...] |
H A D | pcre_study.c | 622 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); 653 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); 1489 compile_block.ctypes = tables + ctypes_offset;
|
H A D | pcre_jit_compile.c | 390 sljit_sw ctypes; member in struct:compiler_common 2600 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); 2767 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); 2779 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); 2790 /* The ctypes array contains only 256 values. */ 2794 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); 2986 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); 3329 if (common->utf && !is_char7_bitset((const pcre_uint8 *)common->ctypes - cbit_length + cbit_digit, FALSE)) 3338 if (common->utf && !is_char7_bitset((const pcre_uint8 *)common->ctypes - cbit_length + cbit_space, FALSE)) 3347 if (common->utf && !is_char7_bitset((const pcre_uint8 *)common->ctypes [all...] |
Completed in 73 milliseconds