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.c3448 PCRE2_SPTR check_subject = start_match; /* start_match includes offset */ in pcre2_dfa_match() local
3456 for (i = re->max_lookbehind; i > 0 && check_subject > subject; i--) in pcre2_dfa_match()
3458 check_subject--; in pcre2_dfa_match()
3459 while (check_subject > subject && in pcre2_dfa_match()
3461 (*check_subject & 0xc0) == 0x80) in pcre2_dfa_match()
3463 (*check_subject & 0xfc00) == 0xdc00) in pcre2_dfa_match()
3465 check_subject--; in pcre2_dfa_match()
3468 check_subject -= re->max_lookbehind; in pcre2_dfa_match()
3469 if (check_subject < subject) check_subject = subject; in pcre2_dfa_match()
3476 match_data->rc = PRIV(valid_utf)(check_subject, in pcre2_dfa_match()
[all …]
Dpcre2_match.c6110 PCRE2_SPTR check_subject = start_match; /* start_match includes offset */ in pcre2_match() local
6118 for (i = re->max_lookbehind; i > 0 && check_subject > subject; i--) in pcre2_match()
6120 check_subject--; in pcre2_match()
6121 while (check_subject > subject && in pcre2_match()
6123 (*check_subject & 0xc0) == 0x80) in pcre2_match()
6125 (*check_subject & 0xfc00) == 0xdc00) in pcre2_match()
6127 check_subject--; in pcre2_match()
6135 check_subject -= re->max_lookbehind; in pcre2_match()
6137 check_subject = subject; in pcre2_match()
6144 match_data->rc = PRIV(valid_utf)(check_subject, in pcre2_match()
[all …]