Lines Matching refs:address
114 void nrfx_rramc_byte_write(uint32_t address, uint8_t value) in nrfx_rramc_byte_write() argument
117 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_byte_write()
118 NRFX_ASSERT(fit_in_memory(address, true, 1)); in nrfx_rramc_byte_write()
120 nrfy_rramc_byte_write(NRF_RRAMC, address, value); in nrfx_rramc_byte_write()
123 void nrfx_rramc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes) in nrfx_rramc_bytes_write() argument
127 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_bytes_write()
128 NRFX_ASSERT(fit_in_memory(address, true, num_bytes)); in nrfx_rramc_bytes_write()
130 nrfy_rramc_bytes_write(NRF_RRAMC, address, src, num_bytes); in nrfx_rramc_bytes_write()
133 void nrfx_rramc_word_write(uint32_t address, uint32_t value) in nrfx_rramc_word_write() argument
136 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_word_write()
137 NRFX_ASSERT(fit_in_memory(address, true, NRFY_RRAMC_BYTES_IN_WORD)); in nrfx_rramc_word_write()
138 NRFX_ASSERT(nrfx_is_word_aligned((void const *)address)); in nrfx_rramc_word_write()
140 nrfy_rramc_word_write(NRF_RRAMC, address, value); in nrfx_rramc_word_write()
143 void nrfx_rramc_words_write(uint32_t address, void const * src, uint32_t num_words) in nrfx_rramc_words_write() argument
147 NRFX_ASSERT(is_valid_address(address, true)); in nrfx_rramc_words_write()
148 NRFX_ASSERT(fit_in_memory(address, true, (num_words * NRFY_RRAMC_BYTES_IN_WORD))); in nrfx_rramc_words_write()
149 NRFX_ASSERT(nrfx_is_word_aligned((void const *)address)); in nrfx_rramc_words_write()
152 nrfy_rramc_words_write(NRF_RRAMC, address, src, num_words); in nrfx_rramc_words_write()