Lines Matching refs:value
97 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_simple_counter_set(uint8_t counter, uint16_t value);
114 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_simple_counter_top_set(uint8_t counter, uint16_t value);
122 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_simple_counter_add_set(uint8_t counter, uint16_t value);
136 uint16_t value);
154 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_combined_counter_set(uint32_t value);
172 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_combined_counter_top_set(uint32_t value);
181 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_combined_counter_add_set(uint32_t value);
239 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_simple_counter_set(uint8_t counter, uint16_t value) in nrf_vpr_csr_vtim_simple_counter_set() argument
244 nrf_csr_write(VPRCSR_NORDIC_CNT0, (uint32_t)value); in nrf_vpr_csr_vtim_simple_counter_set()
247 nrf_csr_write(VPRCSR_NORDIC_CNT1, (uint32_t)value); in nrf_vpr_csr_vtim_simple_counter_set()
270 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_simple_counter_top_set(uint8_t counter, uint16_t value) in nrf_vpr_csr_vtim_simple_counter_top_set() argument
279 reg |= value << VPRCSR_NORDIC_CNTTOP_CNT0RELOAD_Pos; in nrf_vpr_csr_vtim_simple_counter_top_set()
285 reg |= value << VPRCSR_NORDIC_CNTTOP_CNT1RELOAD_Pos; in nrf_vpr_csr_vtim_simple_counter_top_set()
294 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_simple_counter_add_set(uint8_t counter, uint16_t value) in nrf_vpr_csr_vtim_simple_counter_add_set() argument
299 nrf_csr_write(VPRCSR_NORDIC_CNTADD0, value); in nrf_vpr_csr_vtim_simple_counter_add_set()
302 nrf_csr_write(VPRCSR_NORDIC_CNTADD1, value); in nrf_vpr_csr_vtim_simple_counter_add_set()
310 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_simple_wait_set(uint8_t counter, bool write, uint16_t value) in nrf_vpr_csr_vtim_simple_wait_set() argument
319 (value << VPRCSR_NORDIC_WAIT0_DATA_Pos)); in nrf_vpr_csr_vtim_simple_wait_set()
326 (value << VPRCSR_NORDIC_WAIT1_DATA_Pos)); in nrf_vpr_csr_vtim_simple_wait_set()
339 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_combined_counter_set(uint32_t value) in nrf_vpr_csr_vtim_combined_counter_set() argument
341 nrf_csr_write(VPRCSR_NORDIC_CNT, value); in nrf_vpr_csr_vtim_combined_counter_set()
349 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_combined_counter_top_set(uint32_t value) in nrf_vpr_csr_vtim_combined_counter_top_set() argument
351 nrf_csr_write(VPRCSR_NORDIC_CNTTOP, value); in nrf_vpr_csr_vtim_combined_counter_top_set()
354 NRF_STATIC_INLINE void nrf_vpr_csr_vtim_combined_counter_add_set(uint32_t value) in nrf_vpr_csr_vtim_combined_counter_add_set() argument
356 nrf_csr_write(VPRCSR_NORDIC_CNTADD, value); in nrf_vpr_csr_vtim_combined_counter_add_set()