| 381 | #define MAX_XOR_OFFSET 160 |
| 382 | |
| 383 | static int nth_bitmap_object_oid(struct bitmap_index *index, |
| 384 | struct object_id *oid, |
| 385 | uint32_t n) |
| 386 | { |
| 387 | if (index->midx) |
| 388 | return nth_midxed_object_oid(oid, index->midx, n) ? 0 : -1; |
| 389 | return nth_packed_object_id(oid, index->pack, n); |
| 390 | } |
| 391 | |
| 392 | static int load_bitmap_entries_v1(struct bitmap_index *index) |
| 393 | { |