Lines Matching refs:i

15   int i = ( (int)p_reg - (int)NRF_UARTE_regs ) / sizeof(NRF_UARTE_Type);  in uart_number_from_ptr()  local
16 return i; in uart_number_from_ptr()
23 int i = uart_number_from_ptr(p_reg); in nrf_uart_task_trigger() local
26 case NRF_UART_TASK_##x: nhw_UARTE_regw_sideeffects_TASKS_##x(i); break in nrf_uart_task_trigger()
43 int i = uart_number_from_ptr(p_reg); in nrf_uart_int_enable() local
45 nhw_UARTE_regw_sideeffects_INTENSET(i); in nrf_uart_int_enable()
50 int i = uart_number_from_ptr(p_reg); in nrf_uart_int_disable() local
52 nhw_UARTE_regw_sideeffects_INTENCLR(i); in nrf_uart_int_disable()
58 int i = uart_number_from_ptr(p_reg); in nrf_uart_event_clear() local
59 nhw_UARTE_regw_sideeffects_EVENTS_all(i); in nrf_uart_event_clear()
64 int i = uart_number_from_ptr(p_reg); in nrf_uart_errorsrc_get_and_clear() local
65 return nhw_UARTE_regr_sideeffects_ERRORSRC(i); in nrf_uart_errorsrc_get_and_clear()
70 int i = uart_number_from_ptr((NRF_UART_Type *)p_reg); in nrf_uart_rxd_get() local
71 return nhw_UARTE_regr_sideeffects_RXD(i); in nrf_uart_rxd_get()
77 int i = uart_number_from_ptr(p_reg); in nrf_uart_txd_set() local
78 nhw_UARTE_regw_sideeffects_TXD(i); in nrf_uart_txd_set()
83 int i = uart_number_from_ptr(p_reg); in nrf_uart_disable() local
85 nhw_UARTE_regw_sideeffects_ENABLE(i); in nrf_uart_disable()
90 int i = uart_number_from_ptr(p_reg); in nrf_uart_enable() local
92 nhw_UARTE_regw_sideeffects_ENABLE(i); in nrf_uart_enable()
98 int i = uart_number_from_ptr(p_reg); in nrf_uart_configure() local
107 nhw_UARTE_regw_sideeffects_CONFIG(i); in nrf_uart_configure()
115 int i = uart_number_from_ptr(p_reg); in nrf_uart_subscribe_common() local
118 case NRF_UART_TASK_##TASKN: nhw_uart_regw_sideeffects_SUBSCRIBE_##TASKN(i); break; in nrf_uart_subscribe_common()