MCPcopy Create free account
hub / github.com/git/git / bitmap_or

Function bitmap_or

ewah/bitmap.c:131–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131void bitmap_or(struct bitmap *self, const struct bitmap *other)
132{
133 size_t i;
134
135 bitmap_grow(self, other->word_alloc);
136 for (i = 0; i < other->word_alloc; i++)
137 self->words[i] |= other->words[i];
138}
139
140int ewah_bitmap_is_subset(struct ewah_bitmap *self, struct bitmap *other)
141{

Callers 4

ahead_behindFunction · 0.85
bitmap_builder_initFunction · 0.85
fill_bitmap_commitFunction · 0.85
bitmap_writer_buildFunction · 0.85

Calls 1

bitmap_growFunction · 0.85

Tested by

no test coverage detected