* Read a bitmap from the current read position on the mmaped * index, and increase the read position accordingly */
| 193 | * index, and increase the read position accordingly |
| 194 | */ |
| 195 | static struct ewah_bitmap *read_bitmap_1(struct bitmap_index *index) |
| 196 | { |
| 197 | return read_bitmap(index->map, index->map_size, &index->map_pos); |
| 198 | } |
| 199 | |
| 200 | static uint32_t bitmap_num_objects_total(struct bitmap_index *index) |
| 201 | { |
no test coverage detected