Home
last modified time | relevance | path

Searched refs:start_bits (Results 1 – 5 of 5) sorted by relevance

/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_study.c51 #define SET_BIT(c) start_bits[c/8] |= (1 << (c&7))
967 rc = set_start_bits(tcode, start_bits, utf, cd); in set_start_bits()
1014 rc = set_start_bits(++tcode, start_bits, utf, cd); in set_start_bits()
1165 set_type_bits(start_bits, cbit_digit, table_limit, cd); in set_start_bits()
1179 set_type_bits(start_bits, cbit_space, table_limit, cd); in set_start_bits()
1189 set_type_bits(start_bits, cbit_word, table_limit, cd); in set_start_bits()
1365 for (c = 0; c < 16; c++) start_bits[c] |= map[c]; in set_start_bits()
1457 pcre_uint8 start_bits[32]; in pcre_study() local
1529 memset(start_bits, 0, 32 * sizeof(pcre_uint8)); in pcre_study()
1587 memcpy(study->start_bits, start_bits, sizeof(start_bits)); in pcre_study()
[all …]
H A Dpcre_fullinfo.c160 ((const pcre_study_data *)extra_data->study_data)->start_bits : NULL; in pcre_fullinfo()
H A Dpcre_exec.c6378 const pcre_uint8 *start_bits = NULL; in pcre_exec() local
6715 start_bits = study->start_bits; in pcre_exec()
6828 else if (start_bits != NULL) in pcre_exec()
6836 if ((start_bits[c/8] & (1 << (c&7))) != 0) break; in pcre_exec()
H A Dpcre_internal.h2394 pcre_uint8 start_bits[32]; /* Starting char bits */ member
H A Dpcre_jit_compile.c3933 static SLJIT_INLINE void fast_forward_start_bits(compiler_common *common, pcre_uint8 *start_bits, B… in fast_forward_start_bits() argument
3959 if (!check_class_ranges(common, start_bits, (start_bits[31] & 0x80) != 0, TRUE, &matches)) in fast_forward_start_bits()
3968 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)start_bits); in fast_forward_start_bits()
10019 fast_forward_start_bits(common, study->start_bits, (re->options & PCRE_FIRSTLINE) != 0); in PRIV()

Completed in 51 milliseconds