Lines Matching refs:mask
342 NRF_STATIC_INLINE void nrf_gpiote_int_enable(NRF_GPIOTE_Type * p_reg, uint32_t mask);
351 NRF_STATIC_INLINE void nrf_gpiote_int_disable(NRF_GPIOTE_Type * p_reg, uint32_t mask);
363 uint32_t mask);
376 uint32_t mask);
388 uint32_t mask);
402 uint32_t mask);
656 NRF_STATIC_INLINE void nrf_gpiote_int_enable(NRF_GPIOTE_Type * p_reg, uint32_t mask) in nrf_gpiote_int_enable() argument
658 p_reg->NRFX_CONCAT_2(INTENSET, NRF_GPIOTE_IRQ_GROUP) = mask; in nrf_gpiote_int_enable()
661 NRF_STATIC_INLINE void nrf_gpiote_int_disable(NRF_GPIOTE_Type * p_reg, uint32_t mask) in nrf_gpiote_int_disable() argument
663 p_reg->NRFX_CONCAT_2(INTENCLR, NRF_GPIOTE_IRQ_GROUP) = mask; in nrf_gpiote_int_disable()
666 NRF_STATIC_INLINE uint32_t nrf_gpiote_int_enable_check(NRF_GPIOTE_Type const * p_reg, uint32_t mask) in nrf_gpiote_int_enable_check() argument
668 return p_reg->NRFX_CONCAT_2(INTENSET, NRF_GPIOTE_IRQ_GROUP) & mask; in nrf_gpiote_int_enable_check()
674 uint32_t mask) in nrf_gpiote_int_group_enable() argument
679 p_reg->INTENSET0 = mask; in nrf_gpiote_int_group_enable()
682 p_reg->INTENSET1 = mask; in nrf_gpiote_int_group_enable()
686 p_reg->INTENSET2 = mask; in nrf_gpiote_int_group_enable()
691 p_reg->INTENSET3 = mask; in nrf_gpiote_int_group_enable()
696 p_reg->INTENSET4 = mask; in nrf_gpiote_int_group_enable()
701 p_reg->INTENSET5 = mask; in nrf_gpiote_int_group_enable()
706 p_reg->INTENSET6 = mask; in nrf_gpiote_int_group_enable()
717 uint32_t mask) in nrf_gpiote_int_group_disable() argument
722 p_reg->INTENCLR0 = mask; in nrf_gpiote_int_group_disable()
725 p_reg->INTENCLR1 = mask; in nrf_gpiote_int_group_disable()
729 p_reg->INTENCLR2 = mask; in nrf_gpiote_int_group_disable()
734 p_reg->INTENCLR3 = mask; in nrf_gpiote_int_group_disable()
739 p_reg->INTENCLR4 = mask; in nrf_gpiote_int_group_disable()
744 p_reg->INTENCLR5 = mask; in nrf_gpiote_int_group_disable()
749 p_reg->INTENCLR6 = mask; in nrf_gpiote_int_group_disable()
760 uint32_t mask) in nrf_gpiote_int_group_enable_check() argument
765 return p_reg->INTENSET0 & mask; in nrf_gpiote_int_group_enable_check()
767 return p_reg->INTENSET1 & mask; in nrf_gpiote_int_group_enable_check()
770 return p_reg->INTENSET2 & mask; in nrf_gpiote_int_group_enable_check()
774 return p_reg->INTENSET3 & mask; in nrf_gpiote_int_group_enable_check()
778 return p_reg->INTENSET4 & mask; in nrf_gpiote_int_group_enable_check()
782 return p_reg->INTENSET5 & mask; in nrf_gpiote_int_group_enable_check()
786 return p_reg->INTENSET6 & mask; in nrf_gpiote_int_group_enable_check()