Home
last modified time | relevance | path

Searched refs:req_char (Results 1 – 5 of 5) sorted by relevance

/PHP-7.0/ext/pcre/pcrelib/
H A Dpcre_fullinfo.c175 ((re->flags & PCRE_REQCHSET) != 0)? (int)re->req_char : -1; in pcre_fullinfo()
180 ((re->flags & PCRE_REQCHSET) != 0) ? re->req_char : 0; in pcre_fullinfo()
H A Dpcre_compile.c9367 re->req_char = 0; in pcre_compile2()
9635 re->req_char = reqchar & 0xff; in pcre_compile2()
9637 re->req_char = reqchar & 0xffff; in pcre_compile2()
9639 re->req_char = reqchar; in pcre_compile2()
9647 if (re->req_char < 128) in pcre_compile2()
9649 if (cd->fcc[re->req_char] != re->req_char) in pcre_compile2()
9652 else if (UCD_OTHERCASE(re->req_char) != re->req_char) in pcre_compile2()
9657 if (MAX_255(re->req_char) && cd->fcc[re->req_char] != re->req_char) in pcre_compile2()
9684 pcre_uchar ch = re->req_char; in pcre_compile2()
H A Dpcre_exec.c6371 pcre_uchar req_char = 0; in pcre_exec() local
6723 req_char = req_char2 = (pcre_uchar)(re->req_char); in pcre_exec()
6726 req_char2 = TABLE_GET(req_char, md->fcc, req_char); in pcre_exec()
6728 if (utf && req_char > 127) in pcre_exec()
6729 req_char2 = UCD_OTHERCASE(req_char); in pcre_exec()
6885 if (req_char != req_char2) in pcre_exec()
6890 if (pp == req_char || pp == req_char2) { p--; break; } in pcre_exec()
6897 if (UCHAR21INCTEST(p) == req_char) { p--; break; } in pcre_exec()
H A Dpcre_internal.h2333 pcre_uint16 req_char; /* This character must be seen */ member
2359 pcre_uint32 req_char; /* This character must be seen */ member
H A Dpcre_jit_compile.c4041 …t sljit_jump *search_requested_char(compiler_common *common, pcre_uchar req_char, BOOL caseless, B… in search_requested_char() argument
4067 oc = req_char; in search_requested_char()
4070 oc = TABLE_GET(req_char, common->fcc, req_char); in search_requested_char()
4072 if (req_char > 127 && common->utf) in search_requested_char()
4073 oc = UCD_OTHERCASE(req_char); in search_requested_char()
4076 if (req_char == oc) in search_requested_char()
4077 found = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, req_char); in search_requested_char()
4080 bit = req_char ^ oc; in search_requested_char()
4084 found = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, req_char | bit); in search_requested_char()
4088 found = CMP(SLJIT_EQUAL, TMP2, 0, SLJIT_IMM, req_char); in search_requested_char()
[all …]

Completed in 84 milliseconds