Home
last modified time | relevance | path

Searched refs:OP_STAR (Results 1 – 11 of 11) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_auto_possess.c281 OP_STAR; in get_repeat_base()
326 if (c >= OP_STAR && c <= OP_TYPEPOSUPTO) in get_chr_property_list()
329 c -= (base - OP_STAR); in get_chr_property_list()
339 case OP_STAR: in get_chr_property_list()
1076 if (c >= OP_STAR && c <= OP_TYPEPOSUPTO) in PRIV()
1078 c -= get_repeat_base(c) - OP_STAR; in PRIV()
1081 list[1] = c == OP_STAR || c == OP_PLUS || c == OP_QUERY || c == OP_UPTO; in PRIV()
1088 case OP_STAR: in PRIV()
1089 *code += OP_POSSTAR - OP_STAR; in PRIV()
1228 case OP_STAR: in PRIV()
Dpcre2_find_bracket.c172 case OP_STAR: in PRIV()
Dpcre2_pattern_info.c288 case OP_STAR: in pcre2_callout_enumerate()
Dpcre2_dfa_match.c2248 codevalue -= OP_STARI - OP_STAR; in internal_dfa_match()
2293 codevalue -= OP_STARI - OP_STAR; in internal_dfa_match()
2334 codevalue -= OP_STARI - OP_STAR; in internal_dfa_match()
2336 case OP_STAR: in internal_dfa_match()
2371 codevalue -= OP_STARI - OP_STAR; in internal_dfa_match()
2406 codevalue -= OP_STARI - OP_STAR; in internal_dfa_match()
Dpcre2_study.c636 case OP_STAR: in find_minlength()
1097 case OP_STAR: in set_start_bits()
Dpcre2_compile.c1234 case OP_STAR: in find_fixedlength()
1675 case OP_STAR: in could_be_empty_branch()
2562 case OP_STAR: in find_recurse()
5194 case OP_CHAR: op_type = OP_STAR - OP_STAR; break; in compile_branch()
5195 case OP_CHARI: op_type = OP_STARI - OP_STAR; break; in compile_branch()
5196 case OP_NOT: op_type = OP_NOTSTAR - OP_STAR; break; in compile_branch()
5197 case OP_NOTI: op_type = OP_NOTSTARI - OP_STAR; break; in compile_branch()
5242 op_type = OP_TYPESTAR - OP_STAR; /* Use type opcodes */ in compile_branch()
5277 if (repeat_max == -1) *code++ = OP_STAR + repeat_type; in compile_branch()
5340 if (repeat_max < 0) *code++ = OP_STAR + repeat_type; else in compile_branch()
Dpcre2_jit_compile.c713 case OP_STAR: in next_opcode()
954 case OP_STAR: in is_accelerated_repeat()
1257 case OP_STAR: \
8664 if (*opcode >= OP_STAR && *opcode <= OP_POSUPTO) in get_iterator_parameters()
8673 *opcode -= OP_STARI - OP_STAR; in get_iterator_parameters()
8679 *opcode -= OP_NOTSTAR - OP_STAR; in get_iterator_parameters()
8685 *opcode -= OP_NOTSTARI - OP_STAR; in get_iterator_parameters()
8690 *opcode -= OP_TYPESTAR - OP_STAR; in get_iterator_parameters()
8703 *opcode -= OP_CRSTAR - OP_STAR; in get_iterator_parameters()
8709 *opcode -= OP_PLUS - OP_STAR; in get_iterator_parameters()
[all …]
Dpcre2_printint.c458 case OP_STAR: in pcre2_printint()
Dpcre2_internal.h1395 OP_STAR, /* 33 The maximizing and minimizing versions of */ enumerator
Dpcre2_match.c3476 case OP_STAR: in match()
3488 c = *ecode++ - ((op < OP_STARI)? OP_STAR : OP_STARI); in match()
/external/pcre/dist2/
DHACKING267 OP_STAR OP_STARI
299 The normal single-character opcodes (OP_STAR, etc.) are used for repeated
350 (OP_STAR, etc.) are used for repeated positive single-character classes.