BS_ROOM 481 regint.h #define BITSET_AT(bs, pos) (BS_ROOM(bs,pos) & BS_BIT(pos)) BS_ROOM 482 regint.h #define BITSET_SET_BIT(bs, pos) BS_ROOM(bs,pos) |= BS_BIT(pos) BS_ROOM 483 regint.h #define BITSET_CLEAR_BIT(bs, pos) BS_ROOM(bs,pos) &= ~(BS_BIT(pos)) BS_ROOM 484 regint.h #define BITSET_INVERT_BIT(bs, pos) BS_ROOM(bs,pos) ^= BS_BIT(pos) BS_ROOM 153 regparse.c BS_ROOM(bs, pos) |= BS_BIT(pos); \