MCPcopy Create free account
hub / github.com/git/git / line_log_queue_pairs

Function line_log_queue_pairs

line-log.c:1006–1018  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1004}
1005
1006void line_log_queue_pairs(struct rev_info *rev, struct commit *commit)
1007{
1008 struct line_log_data *range = lookup_line_range(rev, commit);
1009 struct line_log_data *r;
1010
1011 for (r = range; r; r = r->next) {
1012 if (r->pair) {
1013 struct diff_filepair *p = diff_filepair_dup(r->pair);
1014 p->line_ranges = &r->ranges;
1015 diff_q(&diff_queued_diff, p);
1016 }
1017 }
1018}
1019
1020static int bloom_filter_check(struct rev_info *rev,
1021 struct commit *commit,

Callers 1

log_tree_diffFunction · 0.85

Calls 3

lookup_line_rangeFunction · 0.85
diff_filepair_dupFunction · 0.85
diff_qFunction · 0.85

Tested by

no test coverage detected