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

/forgerock/web-agents-v4/pcre/
H A Dpcre_study.c51 #define SET_BIT(c) start_bits[c/8] |= (1 << (c&7))
583 start_bits points to the bit map
593 set_table_bit(pcre_uint8 *start_bits, const pcre_uchar *p, BOOL caseless, argument
672 start_bits the starting bitmap
681 set_type_bits(pcre_uint8 *start_bits, int cbit_type, unsigned int table_limit, argument
685 for (c = 0; c < table_limit; c++) start_bits[c] |= cd->cbits[c+cbit_type];
714 start_bits the starting bitmap
723 set_nottype_bits(pcre_uint8 *start_bits, int cbit_type, unsigned int table_limit, argument
727 for (c = 0; c < table_limit; c++) start_bits[c] |= ~cd->cbits[c+cbit_type];
729 if (table_limit != 32) for (c = 24; c < 32; c++) start_bits[
760 set_start_bits(const pcre_uchar *code, pcre_uint8 *start_bits, BOOL utf, compile_data *cd) argument
1421 pcre_uint8 start_bits[32]; local
[all...]
H A Dpcre_fullinfo.c160 ((const pcre_study_data *)extra_data->study_data)->start_bits : NULL;
H A Dpcre_dfa_exec.c3199 const pcre_uint8 *start_bits = NULL; local
3405 start_bits = study->start_bits;
3522 else if (start_bits != NULL)
3530 if ((start_bits[c/8] & (1 << (c&7))) != 0) break;
H A Dpcre_exec.c6366 const pcre_uint8 *start_bits = NULL; local
6703 start_bits = study->start_bits;
6816 else if (start_bits != NULL)
6824 if ((start_bits[c/8] & (1 << (c&7))) != 0) break;
H A Dpcre_jit_compile.c3918 static SLJIT_INLINE void fast_forward_start_bits(compiler_common *common, pcre_uint8 *start_bits, BOOL firstline) argument
3944 if (!check_class_ranges(common, start_bits, (start_bits[31] & 0x80) != 0, TRUE, &matches))
3953 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)start_bits);
10026 fast_forward_start_bits(common, study->start_bits, (re->options & PCRE_FIRSTLINE) != 0);

Completed in 76 milliseconds