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

Function bitmap_unset

ewah/bitmap.c:60–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60void bitmap_unset(struct bitmap *self, size_t pos)
61{
62 size_t block = EWAH_BLOCK(pos);
63
64 if (block < self->word_alloc)
65 self->words[block] &= ~EWAH_MASK(pos);
66}
67
68int bitmap_get(struct bitmap *self, size_t pos)
69{

Callers 5

filter_bitmap_blob_limitFunction · 0.85
pass_to_parentFunction · 0.85
symdiff_prepareFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected