Lines Matching refs:mask
285 uint32_t mask);
297 uint32_t mask);
311 uint32_t mask);
424 NRF_STATIC_INLINE void nrf_ipct_shorts_enable(NRF_IPCT_Type * p_reg, uint32_t mask);
432 NRF_STATIC_INLINE void nrf_ipct_shorts_disable(NRF_IPCT_Type * p_reg, uint32_t mask);
440 NRF_STATIC_INLINE void nrf_ipct_shorts_set(NRF_IPCT_Type * p_reg, uint32_t mask);
473 uint32_t mask) in nrf_ipct_int_enable() argument
479 p_reg->INTENSET0 = mask; in nrf_ipct_int_enable()
484 p_reg->INTENSET1 = mask; in nrf_ipct_int_enable()
489 p_reg->INTENSET2 = mask; in nrf_ipct_int_enable()
494 p_reg->INTENSET3 = mask; in nrf_ipct_int_enable()
499 p_reg->INTENSET4 = mask; in nrf_ipct_int_enable()
504 p_reg->INTENSET5 = mask; in nrf_ipct_int_enable()
509 p_reg->INTENSET6 = mask; in nrf_ipct_int_enable()
514 p_reg->INTENSET7 = mask; in nrf_ipct_int_enable()
525 uint32_t mask) in nrf_ipct_int_disable() argument
531 p_reg->INTENCLR0 = mask; in nrf_ipct_int_disable()
536 p_reg->INTENCLR1 = mask; in nrf_ipct_int_disable()
541 p_reg->INTENCLR2 = mask; in nrf_ipct_int_disable()
546 p_reg->INTENCLR3 = mask; in nrf_ipct_int_disable()
551 p_reg->INTENCLR4 = mask; in nrf_ipct_int_disable()
556 p_reg->INTENCLR5 = mask; in nrf_ipct_int_disable()
561 p_reg->INTENCLR6 = mask; in nrf_ipct_int_disable()
566 p_reg->INTENCLR7 = mask; in nrf_ipct_int_disable()
577 uint32_t mask) in nrf_ipct_int_enable_check() argument
583 return p_reg->INTENSET0 & mask; in nrf_ipct_int_enable_check()
587 return p_reg->INTENSET1 & mask; in nrf_ipct_int_enable_check()
591 return p_reg->INTENSET2 & mask; in nrf_ipct_int_enable_check()
595 return p_reg->INTENSET3 & mask; in nrf_ipct_int_enable_check()
599 return p_reg->INTENSET4 & mask; in nrf_ipct_int_enable_check()
603 return p_reg->INTENSET5 & mask; in nrf_ipct_int_enable_check()
607 return p_reg->INTENSET6 & mask; in nrf_ipct_int_enable_check()
611 return p_reg->INTENSET7 & mask; in nrf_ipct_int_enable_check()
724 NRF_STATIC_INLINE void nrf_ipct_shorts_enable(NRF_IPCT_Type * p_reg, uint32_t mask) in nrf_ipct_shorts_enable() argument
726 p_reg->SHORTS |= mask; in nrf_ipct_shorts_enable()
729 NRF_STATIC_INLINE void nrf_ipct_shorts_disable(NRF_IPCT_Type * p_reg, uint32_t mask) in nrf_ipct_shorts_disable() argument
731 p_reg->SHORTS &= ~(mask); in nrf_ipct_shorts_disable()
734 NRF_STATIC_INLINE void nrf_ipct_shorts_set(NRF_IPCT_Type * p_reg, uint32_t mask) in nrf_ipct_shorts_set() argument
736 p_reg->SHORTS = mask; in nrf_ipct_shorts_set()