You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
clang format apply
This commit is contained in:
@@ -23,12 +23,11 @@
|
||||
#define MALLOC(type) ((type*)calloc(1, sizeof(type)))
|
||||
|
||||
/* bitmap manipulation */
|
||||
#define BITS_PER_ITEM(map) (sizeof(map[0])*8)
|
||||
#define MASK(pos,map) (1 << ((pos) % (BITS_PER_ITEM(map))))
|
||||
#define POS(pos,map) ((pos) / BITS_PER_ITEM(map))
|
||||
#define SET_BIT(x, map) (map[POS(x,map)] |= MASK(x,map))
|
||||
#define CLR_BIT(x, map) (map[POS(x,map)] &= ~MASK(x,map))
|
||||
#define BIT_ISSET(x, map) (map[POS(x,map)] & MASK(x,map))
|
||||
|
||||
#define BITS_PER_ITEM(map) (sizeof(map[0]) * 8)
|
||||
#define MASK(pos, map) (1 << ((pos) % (BITS_PER_ITEM(map))))
|
||||
#define POS(pos, map) ((pos) / BITS_PER_ITEM(map))
|
||||
#define SET_BIT(x, map) (map[POS(x, map)] |= MASK(x, map))
|
||||
#define CLR_BIT(x, map) (map[POS(x, map)] &= ~MASK(x, map))
|
||||
#define BIT_ISSET(x, map) (map[POS(x, map)] & MASK(x, map))
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user