Lines Matching refs:interrupt
535 __STATIC_INLINE void Cy_LPComp_ClearInterrupt(LPCOMP_Type* base, uint32_t interrupt);
536 __STATIC_INLINE void Cy_LPComp_SetInterrupt(LPCOMP_Type* base, uint32_t interrupt);
538 __STATIC_INLINE void Cy_LPComp_SetInterruptMask(LPCOMP_Type* base, uint32_t interrupt);
688 __STATIC_INLINE void Cy_LPComp_SetInterruptMask(LPCOMP_Type* base, uint32_t interrupt) in Cy_LPComp_SetInterruptMask() argument
690 CY_ASSERT_L2(CY_LPCOMP_IS_INTR_VALID(interrupt)); in Cy_LPComp_SetInterruptMask()
692 LPCOMP_INTR_MASK(base) |= interrupt; in Cy_LPComp_SetInterruptMask()
774 __STATIC_INLINE void Cy_LPComp_ClearInterrupt(LPCOMP_Type* base, uint32_t interrupt) in Cy_LPComp_ClearInterrupt() argument
776 CY_ASSERT_L2(CY_LPCOMP_IS_INTR_VALID(interrupt)); in Cy_LPComp_ClearInterrupt()
777 LPCOMP_INTR(base) |= interrupt; in Cy_LPComp_ClearInterrupt()
802 __STATIC_INLINE void Cy_LPComp_SetInterrupt(LPCOMP_Type* base, uint32_t interrupt) in Cy_LPComp_SetInterrupt() argument
804 CY_ASSERT_L2(CY_LPCOMP_IS_INTR_VALID(interrupt)); in Cy_LPComp_SetInterrupt()
805 LPCOMP_INTR_SET(base) = interrupt; in Cy_LPComp_SetInterrupt()