* Write the bitmap index to disk */
| 1112 | * Write the bitmap index to disk |
| 1113 | */ |
| 1114 | static 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 | |
| 1120 | static const struct object_id *oid_access(size_t pos, const void *table) |
| 1121 | { |
no test coverage detected