Lines Matching refs:address
172 NRF_STATIC_INLINE void nrf_nvmc_word_write(uint32_t address,
185 NRF_STATIC_INLINE uint8_t nrf_nvmc_byte_read(uint32_t address);
197 NRF_STATIC_INLINE uint16_t nrf_nvmc_halfword_read(uint32_t address);
209 NRF_STATIC_INLINE uint32_t nrf_nvmc_word_read(uint32_t address);
223 uint32_t address,
375 NRF_STATIC_INLINE void nrf_nvmc_word_write(uint32_t address, in nrf_nvmc_word_write() argument
378 *(volatile uint32_t *)address = value; in nrf_nvmc_word_write()
381 NRF_STATIC_INLINE uint8_t nrf_nvmc_byte_read(uint32_t address) in nrf_nvmc_byte_read() argument
383 return *(volatile uint8_t *)address; in nrf_nvmc_byte_read()
386 NRF_STATIC_INLINE uint16_t nrf_nvmc_halfword_read(uint32_t address) in nrf_nvmc_halfword_read() argument
388 return *(volatile uint16_t *)address; in nrf_nvmc_halfword_read()
391 NRF_STATIC_INLINE uint32_t nrf_nvmc_word_read(uint32_t address) in nrf_nvmc_word_read() argument
393 return *(volatile uint32_t *)address; in nrf_nvmc_word_read()
397 uint32_t address, in nrf_nvmc_buffer_read() argument
400 memcpy(dst, (void *)address, num_bytes); in nrf_nvmc_buffer_read()