Lines Matching refs:index
204 NRF_STATIC_INLINE nrf_ppib_task_t nrf_ppib_send_task_get(uint8_t index);
224 NRF_STATIC_INLINE nrf_ppib_event_t nrf_ppib_receive_event_get(uint8_t index);
294 NRF_STATIC_INLINE bool nrf_ppib_overflow_check(NRF_PPIB_Type const * p_reg, uint8_t index);
307 NRF_STATIC_INLINE nrf_ppib_task_t nrf_ppib_send_task_get(uint8_t index) in nrf_ppib_send_task_get() argument
309 NRFX_ASSERT(index < NRF_PPIB_TASKS_SEND_COUNT); in nrf_ppib_send_task_get()
310 return (nrf_ppib_task_t)NRFX_OFFSETOF(NRF_PPIB_Type, TASKS_SEND[index]); in nrf_ppib_send_task_get()
319 NRF_STATIC_INLINE nrf_ppib_event_t nrf_ppib_receive_event_get(uint8_t index) in nrf_ppib_receive_event_get() argument
321 NRFX_ASSERT(index < NRF_PPIB_EVENTS_RECEIVE_COUNT); in nrf_ppib_receive_event_get()
322 return (nrf_ppib_event_t)NRFX_OFFSETOF(NRF_PPIB_Type, EVENTS_RECEIVE[index]); in nrf_ppib_receive_event_get()
366 NRF_STATIC_INLINE bool nrf_ppib_overflow_check(NRF_PPIB_Type const * p_reg, uint8_t index) in nrf_ppib_overflow_check() argument
368 NRFX_ASSERT(index < NRF_PPIB_TASKS_SEND_COUNT); in nrf_ppib_overflow_check()
369 return (bool)((p_reg->OVERFLOW.SEND >> index) & 0x1UL); in nrf_ppib_overflow_check()