Home
last modified time | relevance | path

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

/external/pcre/dist/
Dpcre_compile.c4390 int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ in compile_branch() local
5500 ptr = read_repeat_counts(ptr+1, &repeat_min, &repeat_max, errorcodeptr); in compile_branch()
5506 repeat_max = -1; in compile_branch()
5511 repeat_max = -1; in compile_branch()
5516 repeat_max = 1; in compile_branch()
5535 reqvary = (repeat_min == repeat_max)? 0 : REQ_VARY; in compile_branch()
5698 if (repeat_max == 0) goto END_REPEAT; in compile_branch()
5709 if (repeat_max == -1) *code++ = OP_STAR + repeat_type; in compile_branch()
5710 else if (repeat_max == 1) *code++ = OP_QUERY + repeat_type; in compile_branch()
5714 PUT2INC(code, 0, repeat_max); in compile_branch()
[all …]