Lines Matching defs:REG
207 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument
209 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument
211 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument
213 #define CLEAR_REG(REG) ((REG) = (0x0)) argument
215 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument
217 #define READ_REG(REG) ((REG)) argument
219 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
225 #define ATOMIC_SET_BIT(REG, BIT) \ argument
234 #define ATOMIC_CLEAR_BIT(REG, BIT) \ argument
243 #define ATOMIC_MODIFY_REG(REG, CLEARMSK, SETMASK) \ argument
252 #define ATOMIC_SETH_BIT(REG, BIT) \ argument
261 #define ATOMIC_CLEARH_BIT(REG, BIT) \ argument
270 #define ATOMIC_MODIFYH_REG(REG, CLEARMSK, SETMASK) \ argument