Home
last modified time | relevance | path

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

/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_study.c49 #define SET_BIT(c) start_bits[c/8] |= (1 << (c&7))
971 rc = set_start_bits(tcode, start_bits, utf, cd); in set_start_bits()
1018 rc = set_start_bits(++tcode, start_bits, utf, cd); in set_start_bits()
1169 set_type_bits(start_bits, cbit_digit, table_limit, cd); in set_start_bits()
1183 set_type_bits(start_bits, cbit_space, table_limit, cd); in set_start_bits()
1193 set_type_bits(start_bits, cbit_word, table_limit, cd); in set_start_bits()
1369 for (c = 0; c < 16; c++) start_bits[c] |= map[c]; in set_start_bits()
1462 pcre_uint8 start_bits[32]; in pcre_study() local
1534 memset(start_bits, 0, 32 * sizeof(pcre_uint8)); in pcre_study()
1592 memcpy(study->start_bits, start_bits, sizeof(start_bits)); in pcre_study()
[all …]
H A Dpcre_fullinfo.c158 ((const pcre_study_data *)extra_data->study_data)->start_bits : NULL; in pcre_fullinfo()
H A Dpcre_exec.c6376 const pcre_uint8 *start_bits = NULL; in pcre_exec() local
6714 start_bits = study->start_bits; in pcre_exec()
6827 else if (start_bits != NULL) in pcre_exec()
6835 if ((start_bits[c/8] & (1 << (c&7))) != 0) break; in pcre_exec()
H A Dpcre_internal.h2398 pcre_uint8 start_bits[32]; /* Starting char bits */ member
H A Dpcre_jit_compile.c3964 static SLJIT_INLINE void fast_forward_start_bits(compiler_common *common, pcre_uint8 *start_bits, B… in fast_forward_start_bits() argument
3990 if (!check_class_ranges(common, start_bits, (start_bits[31] & 0x80) != 0, TRUE, &matches)) in fast_forward_start_bits()
3999 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)start_bits); in fast_forward_start_bits()
10062 fast_forward_start_bits(common, study->start_bits, (re->options & PCRE_FIRSTLINE) != 0); in PRIV()

Completed in 60 milliseconds