Searched refs:req_char (Results 1 – 8 of 8) sorted by relevance
/external/pcre/dist/ |
D | pcre_byte_order.c | 140 re->req_char = swap_uint16(re->req_char); in pcre_pattern_to_host_byte_order() 143 re->req_char = swap_uint32(re->req_char); in pcre_pattern_to_host_byte_order()
|
D | pcre_fullinfo.c | 177 ((re->flags & PCRE_REQCHSET) != 0)? (int)re->req_char : -1; in pcre_fullinfo() 182 ((re->flags & PCRE_REQCHSET) != 0) ? re->req_char : 0; in pcre_fullinfo()
|
D | pcre_dfa_exec.c | 3204 pcre_uchar req_char = 0; in pcre_dfa_exec() local 3415 req_char = req_char2 = (pcre_uchar)(re->req_char); in pcre_dfa_exec() 3418 req_char2 = TABLE_GET(req_char, md->tables + fcc_offset, req_char); in pcre_dfa_exec() 3420 if (utf && req_char > 127) in pcre_dfa_exec() 3421 req_char2 = UCD_OTHERCASE(req_char); in pcre_dfa_exec() 3579 if (req_char != req_char2) in pcre_dfa_exec() 3584 if (pp == req_char || pp == req_char2) { p--; break; } in pcre_dfa_exec() 3591 if (UCHAR21INCTEST(p) == req_char) { p--; break; } in pcre_dfa_exec()
|
D | pcre_compile.c | 9157 re->req_char = 0; in pcre_compile2() 9414 re->req_char = reqchar & 0xff; in pcre_compile2() 9416 re->req_char = reqchar & 0xffff; in pcre_compile2() 9418 re->req_char = reqchar; in pcre_compile2() 9426 if (re->req_char < 128) in pcre_compile2() 9428 if (cd->fcc[re->req_char] != re->req_char) in pcre_compile2() 9431 else if (UCD_OTHERCASE(re->req_char) != re->req_char) in pcre_compile2() 9436 if (MAX_255(re->req_char) && cd->fcc[re->req_char] != re->req_char) in pcre_compile2() 9463 pcre_uchar ch = re->req_char; in pcre_compile2()
|
D | pcre_exec.c | 6361 pcre_uchar req_char = 0; in pcre_exec() local 6712 req_char = req_char2 = (pcre_uchar)(re->req_char); in pcre_exec() 6715 req_char2 = TABLE_GET(req_char, md->fcc, req_char); in pcre_exec() 6717 if (utf && req_char > 127) in pcre_exec() 6718 req_char2 = UCD_OTHERCASE(req_char); in pcre_exec() 6874 if (req_char != req_char2) in pcre_exec() 6879 if (pp == req_char || pp == req_char2) { p--; break; } in pcre_exec() 6886 if (UCHAR21INCTEST(p) == req_char) { p--; break; } in pcre_exec()
|
D | pcre_internal.h | 2325 pcre_uint16 req_char; /* This character must be seen */ member 2351 pcre_uint32 req_char; /* This character must be seen */ member
|
D | pcre_jit_compile.c | 3995 …t sljit_jump *search_requested_char(compiler_common *common, pcre_uchar req_char, BOOL caseless, B… in search_requested_char() argument 4021 oc = req_char; in search_requested_char() 4024 oc = TABLE_GET(req_char, common->fcc, req_char); in search_requested_char() 4026 if (req_char > 127 && common->utf) in search_requested_char() 4027 oc = UCD_OTHERCASE(req_char); in search_requested_char() 4030 if (req_char == oc) in search_requested_char() 4031 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char); in search_requested_char() 4034 bit = req_char ^ oc; in search_requested_char() 4038 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char | bit); in search_requested_char() 4042 found = CMP(SLJIT_C_EQUAL, TMP2, 0, SLJIT_IMM, req_char); in search_requested_char() [all …]
|
D | pcretest.c | 2513 re->req_char = swap_uint16(re->req_char); in regexflip8_or_16() 2694 re->req_char = swap_uint32(re->req_char); in regexflip_32()
|