Searched refs:req_char (Results 1 - 6 of 6) sorted by relevance
/forgerock/web-agents-v4/pcre/ |
H A D | pcre_byte_order.c | 140 re->req_char = swap_uint16(re->req_char); 143 re->req_char = swap_uint32(re->req_char);
|
H A D | pcre_fullinfo.c | 177 ((re->flags & PCRE_REQCHSET) != 0)? (int)re->req_char : -1; 182 ((re->flags & PCRE_REQCHSET) != 0) ? re->req_char : 0;
|
H A D | pcre_dfa_exec.c | 3204 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 D | pcre_compile.c | 9161 re->req_char = 0; 9418 re->req_char = reqchar & 0xff; 9420 re->req_char = reqchar & 0xffff; 9422 re->req_char = reqchar; 9430 if (re->req_char < 128) 9432 if (cd->fcc[re->req_char] != re->req_char) 9435 else if (UCD_OTHERCASE(re->req_char) != re->req_char) 9440 if (MAX_255(re->req_char) [all...] |
H A D | pcre_exec.c | 6361 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 D | pcre_jit_compile.c | 3995 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...] |
Completed in 68 milliseconds