Home
last modified time | relevance | path

Searched refs:ctypes (Results 1 – 8 of 8) sorted by relevance

/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_match.c2261 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2273 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
2285 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
2297 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
2309 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
2321 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match()
3085 if (fc < 128 && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3117 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match()
3151 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match()
3168 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match()
[all …]
H A Dpcre2_auto_possess.c990 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes()
994 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
998 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
1002 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
1006 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
1010 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
H A Dpcre2_dfa_match.c536 const uint8_t *ctypes, *lcc, *fcc; in internal_dfa_match() local
566 ctypes = mb->tables + ctypes_offset; in internal_dfa_match()
1087 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0) in internal_dfa_match()
1096 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0)) in internal_dfa_match()
1125 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match()
1150 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match()
1295 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1326 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1356 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1384 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
[all …]
H A Dpcre2_intmodedep.h724 const uint8_t *ctypes; /* Points to table of type maps */ member
870 const uint8_t *ctypes; /* Points to table of type maps */ member
H A Dpcre2_substitute.c603 const uint8_t *ctypes = code->tables + ctypes_offset; in pcre2_substitute() local
604 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
H A Dpcre2_compile.c2138 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()
2442 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name()
2774 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex()
2874 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex()
2941 ok = MAX_255(ptr[1]) && (cb->ctypes[ptr[1]] & ctype_lcletter) != 0; in parse_regex()
3801 else if (CHMAX_255(c) && (cb->ctypes[c] & ctype_lcletter) != 0) in parse_regex()
6038 (cb->ctypes[c] & ctype_letter) != 0 && in compile_branch()
6039 (cb->ctypes[d] & ctype_letter) != 0 && in compile_branch()
9880 cb.ctypes = tables + ctypes_offset; in pcre2_compile()
H A Dpcre2_jit_compile.c452 sljit_sw ctypes; member
4130 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char7_type()
4174 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4196 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4207 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4228 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4461 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in do_utfreadtype8()
6696 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
6743 OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
8777 …if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_word, FALS… in compile_char1_matchingpath()
[all …]
/PHP-8.3/ext/pdo/tests/
H A Dpdo_018.phpt101 $ctypes = array();
110 $ctypes[$cname] = $ctype;
114 var_dump($ctypes);
126 $ctype = $ctypes[get_class($obj)];

Completed in 88 milliseconds