Lines Matching defs:REG
130 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument
132 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument
134 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument
136 #define CLEAR_REG(REG) ((REG) = (0x0)) argument
138 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument
140 #define READ_REG(REG) ((REG)) argument
142 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
146 #define ATOMIC_SET_BIT(REG, BIT) \ argument
155 #define ATOMIC_CLEAR_BIT(REG, BIT) \ argument
164 #define ATOMIC_MODIFY_REG(REG, CLEARMSK, SETMASK) \ argument
173 #define ATOMIC_SETH_BIT(REG, BIT) \ argument
182 #define ATOMIC_CLEARH_BIT(REG, BIT) \ argument
191 #define ATOMIC_MODIFYH_REG(REG, CLEARMSK, SETMASK) \ argument