Searched refs:req_char (Results 1 - 7 of 7) sorted by relevance

/external/pcre/dist/
H A Dpcre_byte_order.c140 re->req_char = swap_uint16(re->req_char);
143 re->req_char = swap_uint32(re->req_char);
H A Dpcre_fullinfo.c177 ((re->flags & PCRE_REQCHSET) != 0)? (int)re->req_char : -1;
182 ((re->flags & PCRE_REQCHSET) != 0) ? re->req_char : 0;
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_compile.c9157 re->req_char = 0;
9414 re->req_char = reqchar & 0xff;
9416 re->req_char = reqchar & 0xffff;
9418 re->req_char = reqchar;
9426 if (re->req_char < 128)
9428 if (cd->fcc[re->req_char] != re->req_char)
9431 else if (UCD_OTHERCASE(re->req_char) != re->req_char)
9436 if (MAX_255(re->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 Dpcretest.c2513 re->req_char = swap_uint16(re->req_char);
2694 re->req_char = swap_uint32(re->req_char);
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...]

Completed in 292 milliseconds