Lines Matching defs:REG
174 #define SET_BIT(REG, BIT) ((REG) |= (BIT)) argument
176 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT)) argument
178 #define READ_BIT(REG, BIT) ((REG) & (BIT)) argument
180 #define CLEAR_REG(REG) ((REG) = (0x0)) argument
182 #define WRITE_REG(REG, VAL) ((REG) = (VAL)) argument
184 #define READ_REG(REG) ((REG)) argument
186 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) |… argument
192 #define ATOMIC_SET_BIT(REG, BIT) \ argument
201 #define ATOMIC_CLEAR_BIT(REG, BIT) \ argument
210 #define ATOMIC_MODIFY_REG(REG, CLEARMSK, SETMASK) \ argument
219 #define ATOMIC_SETH_BIT(REG, BIT) \ argument
228 #define ATOMIC_CLEARH_BIT(REG, BIT) \ argument
237 #define ATOMIC_MODIFYH_REG(REG, CLEARMSK, SETMASK) \ argument