Home
last modified time | relevance | path

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

/external/pcre/dist/
Dpcre_compile.c4460 int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ in compile_branch() local
5602 ptr = read_repeat_counts(ptr+1, &repeat_min, &repeat_max, errorcodeptr); in compile_branch()
5608 repeat_max = -1; in compile_branch()
5613 repeat_max = -1; in compile_branch()
5618 repeat_max = 1; in compile_branch()
5637 reqvary = (repeat_min == repeat_max)? 0 : REQ_VARY; in compile_branch()
5800 if (repeat_max == 0) goto END_REPEAT; in compile_branch()
5811 if (repeat_max == -1) *code++ = OP_STAR + repeat_type; in compile_branch()
5812 else if (repeat_max == 1) *code++ = OP_QUERY + repeat_type; in compile_branch()
5816 PUT2INC(code, 0, repeat_max); in compile_branch()
[all …]