Home
last modified time | relevance | path

Searched refs:num_bytes (Results 1 – 7 of 7) sorted by relevance

/hal_nordic-latest/nrfx/drivers/include/
Dnrfx_rramc.h129 void nrfx_rramc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes);
274 NRFX_STATIC_INLINE void nrfx_rramc_buffer_read(void * dst, uint32_t address, uint32_t num_bytes);
308 NRFX_STATIC_INLINE void nrfx_rramc_buffer_read(void * dst, uint32_t address, uint32_t num_bytes) in nrfx_rramc_buffer_read() argument
310 nrfy_rramc_buffer_read(dst, address, num_bytes); in nrfx_rramc_buffer_read()
Dnrfx_nvmc.h235 void nrfx_nvmc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes);
/hal_nordic-latest/nrfx/drivers/src/
Dnrfx_nvmc.c415 void nrfx_nvmc_bytes_write(uint32_t addr, void const * src, uint32_t num_bytes) in nrfx_nvmc_bytes_write() argument
427 if (leading_bytes > num_bytes) in nrfx_nvmc_bytes_write()
429 leading_bytes = num_bytes; in nrfx_nvmc_bytes_write()
434 num_bytes -= leading_bytes; in nrfx_nvmc_bytes_write()
445 for (uint32_t i = 0; i < num_bytes / NVMC_BYTES_IN_WORD; i++) in nrfx_nvmc_bytes_write()
460 uint32_t word_count = num_bytes / NVMC_BYTES_IN_WORD; in nrfx_nvmc_bytes_write()
468 uint32_t trailing_bytes = num_bytes % NVMC_BYTES_IN_WORD; in nrfx_nvmc_bytes_write()
Dnrfx_rramc.c123 void nrfx_rramc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes) in nrfx_rramc_bytes_write() argument
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()
/hal_nordic-latest/nrfx/hal/
Dnrf_rramc.h488 NRF_STATIC_INLINE void nrf_rramc_buffer_write(uint32_t address, void * src, uint32_t num_bytes);
526 NRF_STATIC_INLINE void nrf_rramc_buffer_read(void * dst, uint32_t address, uint32_t num_bytes);
757 NRF_STATIC_INLINE void nrf_rramc_buffer_write(uint32_t address, void * src, uint32_t num_bytes) in nrf_rramc_buffer_write() argument
759 memcpy((void *)address, src, num_bytes); in nrf_rramc_buffer_write()
777 NRF_STATIC_INLINE void nrf_rramc_buffer_read(void * dst, uint32_t address, uint32_t num_bytes) in nrf_rramc_buffer_read() argument
779 memcpy(dst, (void *)address, num_bytes); in nrf_rramc_buffer_read()
Dnrf_nvmc.h224 uint32_t num_bytes);
398 uint32_t num_bytes) in nrf_nvmc_buffer_read() argument
400 memcpy(dst, (void *)address, num_bytes); in nrf_nvmc_buffer_read()
/hal_nordic-latest/nrfx/haly/
Dnrfy_rramc.h223 uint32_t num_bytes) in nrfy_rramc_bytes_write() argument
233 for (uint32_t i = 0; i < num_bytes; i++) in nrfy_rramc_bytes_write()
340 uint32_t num_bytes) in nrfy_rramc_buffer_read() argument
343 nrf_rramc_buffer_read(dst, address, num_bytes); in nrfy_rramc_buffer_read()