Lines Matching refs:source_end
636 size_t source_end = 0;
641 &source_end));
644 if (target_start >= target_length || source_start >= source_end)
651 if (source_end - source_start > target_length - target_start)
652 source_end = source_start + target_length - target_start;
655 std::min(source_end - source_start, target_length - target_start),
824 size_t source_end = 0;
832 &source_end));
841 CHECK_LE(source_start, source_end);
845 std::min(std::min(source_end - source_start, target_end - target_start),
852 source_end - source_start,