Home
last modified time | relevance | path

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

/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_study.c51 #define SET_BIT(c) start_bits[c/8] |= (1 << (c&7))
973 rc = set_start_bits(tcode, start_bits, utf, cd); in set_start_bits()
1020 rc = set_start_bits(++tcode, start_bits, utf, cd); in set_start_bits()
1171 set_type_bits(start_bits, cbit_digit, table_limit, cd); in set_start_bits()
1185 set_type_bits(start_bits, cbit_space, table_limit, cd); in set_start_bits()
1195 set_type_bits(start_bits, cbit_word, table_limit, cd); in set_start_bits()
1371 for (c = 0; c < 16; c++) start_bits[c] |= map[c]; in set_start_bits()
1464 pcre_uint8 start_bits[32]; in pcre_study() local
1536 memset(start_bits, 0, 32 * sizeof(pcre_uint8)); in pcre_study()
1594 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
6716 start_bits = study->start_bits; in pcre_exec()
6829 else if (start_bits != NULL) in pcre_exec()
6837 if ((start_bits[c/8] & (1 << (c&7))) != 0) break; in pcre_exec()
H A Dpcre_internal.h2402 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 56 milliseconds