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

Function BitmapSet

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

Set the given bit.

Source from the content-addressed store, hash-verified

38
39// Set the given bit.
40inline void BitmapSet(uint8_t *bitmap, size_t idx) {
41 bitmap[idx >> 3] |= 1 << (idx & 7);
42}
43
44// Switch the given bit to the specified value.
45inline void BitmapChange(uint8_t *bitmap, size_t idx, bool value) {

Callers 2

AddKeyMethod · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68