Searched refs:BS_ROOM (Results 1 – 1 of 1) sorted by relevance
442 #define BS_ROOM(bs,pos) (bs)[pos / BITS_IN_ROOM] macro445 #define BITSET_AT(bs, pos) (BS_ROOM(bs,pos) & BS_BIT(pos))446 #define BITSET_SET_BIT(bs, pos) BS_ROOM(bs,pos) |= BS_BIT(pos)447 #define BITSET_CLEAR_BIT(bs, pos) BS_ROOM(bs,pos) &= ~(BS_BIT(pos))448 #define BITSET_INVERT_BIT(bs, pos) BS_ROOM(bs,pos) ^= BS_BIT(pos)
Completed in 11 milliseconds