MCPcopy Create free account
hub / github.com/apache/impala / BitmapClear

Function BitmapClear

be/src/kudu/util/bitmap.h:50–52  ·  view source on GitHub ↗

Clear the given bit.

Source from the content-addressed store, hash-verified

48
49// Clear the given bit.
50inline void BitmapClear(uint8_t *bitmap, size_t idx) {
51 bitmap[idx >> 3] &= ~(1 << (idx & 7));
52}
53
54// Test/get the given bit.
55inline bool BitmapTest(const uint8_t *bitmap, size_t idx) {

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68