Home
last modified time | relevance | path

Searched refs:check_subject (Results 1 – 2 of 2) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_dfa_match.c3286 PCRE2_SPTR check_subject = start_match; /* start_match includes offset */ in pcre2_dfa_match() local
3294 for (i = re->max_lookbehind; i > 0 && check_subject > subject; i--) in pcre2_dfa_match()
3296 check_subject--; in pcre2_dfa_match()
3297 while (check_subject > subject && in pcre2_dfa_match()
3299 (*check_subject & 0xc0) == 0x80) in pcre2_dfa_match()
3301 (*check_subject & 0xfc00) == 0xdc00) in pcre2_dfa_match()
3303 check_subject--; in pcre2_dfa_match()
3306 check_subject -= re->max_lookbehind; in pcre2_dfa_match()
3307 if (check_subject < subject) check_subject = subject; in pcre2_dfa_match()
3314 match_data->rc = PRIV(valid_utf)(check_subject, in pcre2_dfa_match()
[all …]
Dpcre2_match.c6551 PCRE2_SPTR check_subject = start_match; /* start_match includes offset */ in pcre2_match() local
6559 for (i = re->max_lookbehind; i > 0 && check_subject > subject; i--) in pcre2_match()
6561 check_subject--; in pcre2_match()
6562 while (check_subject > subject && in pcre2_match()
6564 (*check_subject & 0xc0) == 0x80) in pcre2_match()
6566 (*check_subject & 0xfc00) == 0xdc00) in pcre2_match()
6568 check_subject--; in pcre2_match()
6576 check_subject -= re->max_lookbehind; in pcre2_match()
6578 check_subject = subject; in pcre2_match()
6585 match_data->rc = PRIV(valid_utf)(check_subject, in pcre2_match()
[all …]