Home
last modified time | relevance | path

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

/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_match.c2171 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2183 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
2195 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
2207 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
2219 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
2231 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match()
2919 if (fc < 128 && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2951 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match()
2985 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match()
3002 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match()
[all …]
H A Dpcre2_auto_possess.c953 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes()
957 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
961 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
965 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
969 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
973 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
H A Dpcre2_dfa_match.c525 const uint8_t *ctypes, *lcc, *fcc; in internal_dfa_match() local
554 ctypes = mb->tables + ctypes_offset; in internal_dfa_match()
1073 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0) in internal_dfa_match()
1082 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0)) in internal_dfa_match()
1111 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match()
1136 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match()
1267 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1298 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1328 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1356 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
[all …]
H A Dpcre2_substitute.c512 const uint8_t *ctypes = code->tables + ctypes_offset; in pcre2_substitute() local
513 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
H A Dpcre2_intmodedep.h718 const uint8_t *ctypes; /* Points to table of type maps */ member
856 const uint8_t *ctypes; /* Points to table of type maps */ member
H A Dpcre2_compile.c1976 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()
2170 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype) != 0) in read_name()
2485 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex()
2580 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex()
5517 (cb->ctypes[c] & ctype_letter) != 0 && in compile_branch()
5518 (cb->ctypes[d] & ctype_letter) != 0 && in compile_branch()
9225 cb.ctypes = tables + ctypes_offset; in pcre2_compile()
H A Dpcre2_jit_compile.c444 sljit_sw ctypes; member
3237 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char7_type()
3404 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
3416 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
3431 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
3624 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in do_utfreadtype8()
5634 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
5679 OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
7358 …if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_digit, FAL… in compile_char1_matchingpath()
7387 …if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_word, FALS… in compile_char1_matchingpath()
[all …]
/PHP-7.3/ext/pdo/tests/
H A Dpdo_018.phpt100 $ctypes = array();
109 $ctypes[$cname] = $ctype;
113 var_dump($ctypes);
125 $ctype = $ctypes[get_class($obj)];

Completed in 94 milliseconds