Lines Matching refs:i
47 #define GPIO_PORT_NUM(periph_name, prefix, i, _) i, argument
48 #define GPIO_REG(periph_name, prefix, i, _) NRFX_CONCAT(NRF_, periph_name, prefix, i), argument
49 #define GPIO_NUM_OF_PINS(periph_name, prefix, i, _) \ argument
50 NRFX_CONCAT(periph_name, prefix, i, _PIN_NUM)
74 #define NRF_INTERNAL_GPIO_PORT_EXTRACT_1(periph_name, prefix, i, port) \ argument
75 case i: \
76 port = NRFX_CONCAT(NRF_, periph_name, prefix, i); \
92 #define NRF_INTERNAL_GPIO_PORT_MASK_SET_1(periph_name, prefix, i, mask) \ argument
93 case i: \
94 mask = NRFX_CONCAT(periph_name, prefix, i, _FEATURE_PINS_PRESENT); \
1339 uint32_t i; in nrf_gpio_ports_read() local
1341 for (i = start_port; i < (start_port + length); i++) in nrf_gpio_ports_read()
1343 *p_masks = nrf_gpio_port_in_read(gpio_regs[i]); in nrf_gpio_ports_read()
1425 uint32_t i; in nrf_gpio_latches_read() local
1427 for (i = start_port; i < (start_port + length); i++) in nrf_gpio_latches_read()
1429 *p_masks = gpio_regs[i]->LATCH; in nrf_gpio_latches_read()
1439 uint32_t i; in nrf_gpio_latches_read_and_clear() local
1441 for (i = start_port; i < (start_port + length); i++) in nrf_gpio_latches_read_and_clear()
1443 *p_masks = gpio_regs[i]->LATCH; in nrf_gpio_latches_read_and_clear()
1446 gpio_regs[i]->LATCH = *p_masks; in nrf_gpio_latches_read_and_clear()