Lines Matching refs:REPEAT_UNLIMITED

149 #define REPEAT_UNLIMITED   (MAX_REPEAT_COUNT+1)  macro
1001 if (max != REPEAT_UNLIMITED) in show_parsed()
1010 if (max != REPEAT_UNLIMITED) in show_parsed()
1019 if (max != REPEAT_UNLIMITED) in show_parsed()
1420 int32_t max = REPEAT_UNLIMITED; /* This value is larger than MAX_REPEAT_COUNT */ in read_repeat_counts()
7193 repeat_max = REPEAT_UNLIMITED; in compile_branch()
7200 repeat_max = REPEAT_UNLIMITED; in compile_branch()
7331 if (repeat_min == 0 && repeat_max == REPEAT_UNLIMITED) in compile_branch()
7333 else if (repeat_min == 1 && repeat_max == REPEAT_UNLIMITED) in compile_branch()
7341 if (repeat_max == REPEAT_UNLIMITED) repeat_max = 0; /* 2-byte encoding for max */ in compile_branch()
7374 if (repeat_min > 0 && (repeat_min != 1 || repeat_max != REPEAT_UNLIMITED)) in compile_branch()
7406 if (repeat_max != REPEAT_UNLIMITED) repeat_max -= repeat_min; in compile_branch()
7469 if (repeat_max == REPEAT_UNLIMITED) repeat_max = repeat_min + 1; in compile_branch()
7499 if (repeat_max <= 1 || repeat_max == REPEAT_UNLIMITED) in compile_branch()
7535 if (repeat_max != REPEAT_UNLIMITED) repeat_max--; in compile_branch()
7582 if (repeat_max != REPEAT_UNLIMITED) repeat_max -= repeat_min; in compile_branch()
7592 if (repeat_max != REPEAT_UNLIMITED) in compile_branch()
7811 if (repeat_max == REPEAT_UNLIMITED) *code++ = OP_STAR + repeat_type; in compile_branch()
7827 if (repeat_max == REPEAT_UNLIMITED) in compile_branch()
7870 if (repeat_max == REPEAT_UNLIMITED) in compile_branch()
9790 if (max != REPEAT_UNLIMITED) in get_branchlength()