| 832 | } |
| 833 | |
| 834 | static int bsearch_graph(struct commit_graph *g, const struct object_id *oid, uint32_t *pos) |
| 835 | { |
| 836 | return bsearch_hash(oid->hash, g->chunk_oid_fanout, |
| 837 | g->chunk_oid_lookup, g->hash_algo->rawsz, pos); |
| 838 | } |
| 839 | |
| 840 | static void load_oid_from_graph(struct commit_graph *g, |
| 841 | uint32_t pos, |
no test coverage detected