MCPcopy Index your code
hub / github.com/git/git / dump_bitmap

Function dump_bitmap

pack-bitmap-write.c:1114–1118  ·  view source on GitHub ↗

* Write the bitmap index to disk */

Source from the content-addressed store, hash-verified

1112 * Write the bitmap index to disk
1113 */
1114static inline void dump_bitmap(struct hashfile *f, struct ewah_bitmap *bitmap)
1115{
1116 if (ewah_serialize_to(bitmap, hashwrite_ewah_helper, f) < 0)
1117 die("Failed to write bitmap index");
1118}
1119
1120static const struct object_id *oid_access(size_t pos, const void *table)
1121{

Callers 3

write_pseudo_mergesFunction · 0.85
bitmap_writer_finishFunction · 0.85

Calls 2

ewah_serialize_toFunction · 0.85
dieFunction · 0.70

Tested by

no test coverage detected