Lines Matching refs:p_reg
12 void nrf_temp_task_trigger(NRF_TEMP_Type * p_reg, nrf_temp_task_t temp_task) in nrf_temp_task_trigger() argument
14 *((volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)temp_task)) = 0x1UL; in nrf_temp_task_trigger()
25 void nrf_temp_int_enable(NRF_TEMP_Type * p_reg, uint32_t mask) in nrf_temp_int_enable() argument
27 (void) p_reg; in nrf_temp_int_enable()
32 void nrf_temp_int_disable(NRF_TEMP_Type * p_reg, uint32_t mask) in nrf_temp_int_disable() argument
34 (void) p_reg; in nrf_temp_int_disable()
39 void nrf_temp_event_clear(NRF_TEMP_Type * p_reg, nrf_temp_event_t event) in nrf_temp_event_clear() argument
41 *((volatile uint32_t *)((uint8_t *)p_reg + (uint32_t)event)) = 0x0UL; in nrf_temp_event_clear()
47 static void nrf_temp_subscribe_common(NRF_TEMP_Type * p_reg, in nrf_temp_subscribe_common() argument
50 (void) p_reg; in nrf_temp_subscribe_common()
61 void nrf_temp_subscribe_set(NRF_TEMP_Type * p_reg, in nrf_temp_subscribe_set() argument
65 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) task + 0x80uL)) = in nrf_temp_subscribe_set()
67 nrf_temp_subscribe_common(p_reg, task); in nrf_temp_subscribe_set()
70 void nrf_temp_subscribe_clear(NRF_TEMP_Type * p_reg, in nrf_temp_subscribe_clear() argument
73 *((volatile uint32_t *) ((uint8_t *) p_reg + (uint32_t) task + 0x80uL)) = 0; in nrf_temp_subscribe_clear()
74 nrf_temp_subscribe_common(p_reg, task); in nrf_temp_subscribe_clear()