Lines Matching refs:index
569 NRF_STATIC_INLINE nrf_gpiote_task_t nrf_gpiote_out_task_get(uint8_t index);
579 NRF_STATIC_INLINE nrf_gpiote_task_t nrf_gpiote_set_task_get(uint8_t index);
590 NRF_STATIC_INLINE nrf_gpiote_task_t nrf_gpiote_clr_task_get(uint8_t index);
600 NRF_STATIC_INLINE nrf_gpiote_event_t nrf_gpiote_in_event_get(uint8_t index);
914 NRF_STATIC_INLINE nrf_gpiote_task_t nrf_gpiote_out_task_get(uint8_t index) in nrf_gpiote_out_task_get() argument
916 NRFX_ASSERT(index < GPIOTE_CH_NUM); in nrf_gpiote_out_task_get()
917 return (nrf_gpiote_task_t)NRFX_OFFSETOF(NRF_GPIOTE_Type, TASKS_OUT[index]); in nrf_gpiote_out_task_get()
921 NRF_STATIC_INLINE nrf_gpiote_task_t nrf_gpiote_set_task_get(uint8_t index) in nrf_gpiote_set_task_get() argument
923 NRFX_ASSERT(index < GPIOTE_CH_NUM); in nrf_gpiote_set_task_get()
924 return (nrf_gpiote_task_t)NRFX_OFFSETOF(NRF_GPIOTE_Type, TASKS_SET[index]); in nrf_gpiote_set_task_get()
929 NRF_STATIC_INLINE nrf_gpiote_task_t nrf_gpiote_clr_task_get(uint8_t index) in nrf_gpiote_clr_task_get() argument
931 NRFX_ASSERT(index < GPIOTE_CH_NUM); in nrf_gpiote_clr_task_get()
932 return (nrf_gpiote_task_t)NRFX_OFFSETOF(NRF_GPIOTE_Type, TASKS_CLR[index]); in nrf_gpiote_clr_task_get()
936 NRF_STATIC_INLINE nrf_gpiote_event_t nrf_gpiote_in_event_get(uint8_t index) in nrf_gpiote_in_event_get() argument
938 NRFX_ASSERT(index < GPIOTE_CH_NUM); in nrf_gpiote_in_event_get()
939 return (nrf_gpiote_event_t)NRFX_OFFSETOF(NRF_GPIOTE_Type, EVENTS_IN[index]); in nrf_gpiote_in_event_get()