Searched defs:req_char (Results 1 - 4 of 4) sorted by relevance

/forgerock/web-agents-v4/pcre/
H A Dpcre_dfa_exec.c3204 pcre_uchar req_char = 0; local
3415 req_char = req_char2 = (pcre_uchar)(re->req_char);
3418 req_char2 = TABLE_GET(req_char, md->tables + fcc_offset, req_char);
3420 if (utf && req_char > 127)
3421 req_char2 = UCD_OTHERCASE(req_char);
3557 /* If req_char is set, we know that that pcre_uchar must appear in the
3559 req_char must be later in the subject; otherwise the test starts at the
3579 if (req_char !
[all...]
H A Dpcre_exec.c6361 pcre_uchar req_char = 0; local
6712 req_char = req_char2 = (pcre_uchar)(re->req_char);
6715 req_char2 = TABLE_GET(req_char, md->fcc, req_char);
6717 if (utf && req_char > 127)
6718 req_char2 = UCD_OTHERCASE(req_char);
6851 /* If req_char is set, we know that that character must appear in the
6852 subject for the match to succeed. If the first character is set, req_char
6874 if (req_char !
[all...]
H A Dpcre_jit_compile.c3995 static SLJIT_INLINE struct sljit_jump *search_requested_char(compiler_common *common, pcre_uchar req_char, BOOL caseless, BOOL has_firstchar) argument
4021 oc = req_char;
4024 oc = TABLE_GET(req_char, common->fcc, req_char);
4026 if (req_char > 127 && common->utf)
4027 oc = UCD_OTHERCASE(req_char);
4030 if (req_char == oc)
4031 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char);
4034 bit = req_char ^ oc;
4038 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char | bi
[all...]
H A Dpcre_internal.h2303 use pcre_uint32 for first_char and req_char. We can't put an ifdef inside the
2325 pcre_uint16 req_char; /* This character must be seen */ member in struct:real_pcre8_or_16
2351 pcre_uint32 req_char; /* This character must be seen */ member in struct:real_pcre32

Completed in 77 milliseconds