Lines Matching refs:index

380 NRF_STATIC_INLINE bool nrf_ipct_overflow_send_get(NRF_IPCT_Type const * p_reg, uint8_t index);
389 NRF_STATIC_INLINE nrf_ipct_task_t nrf_ipct_send_task_get(uint8_t index);
398 NRF_STATIC_INLINE nrf_ipct_task_t nrf_ipct_ack_task_get(uint8_t index);
407 NRF_STATIC_INLINE nrf_ipct_event_t nrf_ipct_receive_event_get(uint8_t index);
416 NRF_STATIC_INLINE nrf_ipct_event_t nrf_ipct_acked_event_get(uint8_t index);
688 NRF_STATIC_INLINE bool nrf_ipct_overflow_send_get(NRF_IPCT_Type const * p_reg, uint8_t index) in nrf_ipct_overflow_send_get() argument
690 NRFX_ASSERT(index < NRF_IPCT_TASKS_SEND_COUNT); in nrf_ipct_overflow_send_get()
691 return (p_reg->OVERFLOW.SEND & (1uL << index)); in nrf_ipct_overflow_send_get()
694 NRF_STATIC_INLINE nrf_ipct_task_t nrf_ipct_send_task_get(uint8_t index) in nrf_ipct_send_task_get() argument
696 return (nrf_ipct_task_t)(NRFX_OFFSETOF(NRF_IPCT_Type, TASKS_SEND[index])); in nrf_ipct_send_task_get()
699 NRF_STATIC_INLINE nrf_ipct_task_t nrf_ipct_ack_task_get(uint8_t index) in nrf_ipct_ack_task_get() argument
702 return (nrf_ipct_task_t)(NRFX_OFFSETOF(NRF_IPCT_Type, TASKS_ACK[index])); in nrf_ipct_ack_task_get()
704 (void)index; in nrf_ipct_ack_task_get()
709 NRF_STATIC_INLINE nrf_ipct_event_t nrf_ipct_receive_event_get(uint8_t index) in nrf_ipct_receive_event_get() argument
711 return (nrf_ipct_event_t)(NRFX_OFFSETOF(NRF_IPCT_Type, EVENTS_RECEIVE[index])); in nrf_ipct_receive_event_get()
714 NRF_STATIC_INLINE nrf_ipct_event_t nrf_ipct_acked_event_get(uint8_t index) in nrf_ipct_acked_event_get() argument
717 return (nrf_ipct_event_t)(NRFX_OFFSETOF(NRF_IPCT_Type, EVENTS_ACKED[index])); in nrf_ipct_acked_event_get()
719 (void)index; in nrf_ipct_acked_event_get()