Searched refs:repeat_type (Results 1 – 2 of 2) sorted by relevance
4389 int repeat_type, op_type; in compile_branch() local5581 repeat_type = 0; /* Force greedy */ in compile_branch()5587 repeat_type = greedy_non_default; in compile_branch()5590 else repeat_type = greedy_default; in compile_branch()5702 repeat_type += op_type; 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()5713 *code++ = OP_UPTO + repeat_type; in compile_branch()5726 *code++ = OP_PLUS + repeat_type; in compile_branch()5731 *code++ = OP_UPTO + repeat_type; in compile_branch()[all …]
6938 int repeat_type = 0, repeat_count = 0; in compile_bracket_matchingpath() local6969 repeat_type = PRIVATE_DATA(matchingpath + 2); in compile_bracket_matchingpath()6971 SLJIT_ASSERT(repeat_length != 0 && repeat_type != 0 && repeat_count != 0); in compile_bracket_matchingpath()6972 if (repeat_type == OP_UPTO) in compile_bracket_matchingpath()6974 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()7087 if (repeat_type != 0) in compile_bracket_matchingpath()7090 if (repeat_type == OP_EXACT) in compile_bracket_matchingpath()7100 if (has_alternatives && opcode != OP_ONCE && opcode < OP_SBRA && repeat_type == 0) in compile_bracket_matchingpath()7327 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()7349 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()[all …]