Searched refs:first_guess (Results 1 – 1 of 1) sorted by relevance
656 LINENUM first_guess = pch_first() + last_offset; in locate_hunk() local659 LINENUM max_pos_offset = input_lines - first_guess - pat_lines + 1; in locate_hunk()660 LINENUM max_neg_offset = first_guess - last_frozen_line - 1 + pch_context(); in locate_hunk()668 return (first_guess); in locate_hunk()670 if (max_neg_offset >= first_guess) /* do not try lines < 0 */ in locate_hunk()671 max_neg_offset = first_guess - 1; in locate_hunk()672 if (first_guess <= input_lines && patch_match(first_guess, 0, fuzz)) in locate_hunk()673 return first_guess; in locate_hunk()678 if (check_after && patch_match(first_guess, offset, fuzz)) { in locate_hunk()685 return first_guess + offset; in locate_hunk()[all …]