Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_compile.c3862 int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ in compile_branch() local
5067 ptr = read_repeat_counts(ptr+1, &repeat_min, &repeat_max, errorcodeptr); in compile_branch()
5073 repeat_max = -1; in compile_branch()
5078 repeat_max = -1; in compile_branch()
5083 repeat_max = 1; in compile_branch()
5102 reqvary = (repeat_min == repeat_max)? 0 : REQ_VARY; in compile_branch()
5161 if (repeat_max == 1 && repeat_min == 1) goto END_REPEAT; in compile_branch()
5266 if (repeat_max == 0) goto END_REPEAT; in compile_branch()
5277 if (repeat_max == -1) *code++ = OP_STAR + repeat_type; in compile_branch()
5278 else if (repeat_max == 1) *code++ = OP_QUERY + repeat_type; in compile_branch()
[all …]