Searched defs:SET_BIT (Results 1 – 5 of 5) sorted by relevance
36 #define SET_BIT(bitmap, pos) ((bitmap) |= (1u << (pos))) macro
14 #define SET_BIT(bitmap, pos) (bitmap |= (1u << pos)) macro
57 #define SET_BIT(c) re->start_bitmap[(c)/8] |= (1u << ((c)&7)) macro
39 #define SET_BIT(m,b) (m[ (b) / 8 ] |= (1U << ((b) % 8))) macro
52 #define SET_BIT(lval, bit, cond) \ macro