Home
last modified time | relevance | path

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

/hal_renesas-latest/smartbond/da1469x_hal/
Dda1469x_otp.c86 da1469x_otp_read(uint32_t offset, void *dst, uint32_t num_bytes) in da1469x_otp_read() argument
91 if (offset >= MCU_OTPM_SIZE || (offset + num_bytes) > MCU_OTPM_SIZE) { in da1469x_otp_read()
95 if (num_bytes & 0x3) { in da1469x_otp_read()
104 for (; num_bytes; dst_addr++, src_addr++, num_bytes -= 4) { in da1469x_otp_read()
116 da1469x_otp_write(uint32_t offset, const void *src, uint32_t num_bytes) in da1469x_otp_write() argument
122 if (offset >= MCU_OTPM_SIZE || (offset + num_bytes) > MCU_OTPM_SIZE) { in da1469x_otp_write()
126 if (num_bytes & 0x3) { in da1469x_otp_write()
158 num_bytes -= 4; in da1469x_otp_write()
161 } while (num_bytes); in da1469x_otp_write()
Dda1469x_otp.h88 uint32_t num_bytes);
90 int da1469x_otp_read(uint32_t offset, void *dst, uint32_t num_bytes);
/hal_renesas-latest/drivers/ra/fsp/src/r_flash_hp/
Dr_flash_hp.c274 uint32_t num_bytes,
327 uint32_t const num_bytes,
460 uint32_t const num_bytes) in R_FLASH_HP_Write() argument
468 …hp_write_bc_parameter_checking(p_ctrl, flash_address & ~BSP_FEATURE_TZ_NS_OFFSET, num_bytes, true); in R_FLASH_HP_Write()
472 p_ctrl->operations_remaining = (num_bytes) >> 1; // Since two bytes will be written at a time in R_FLASH_HP_Write()
575 uint32_t num_bytes = (region0_blocks * BSP_FEATURE_FLASH_HP_CF_REGION0_BLOCK_SIZE); in R_FLASH_HP_Erase() local
578num_bytes += ((num_blocks - region0_blocks) * BSP_FEATURE_FLASH_HP_CF_REGION1_BLOCK_SIZE); in R_FLASH_HP_Erase()
592 …FSP_ERROR_RETURN((start_address & FLASH_HP_PRV_BANK1_MASK) + num_bytes <= rom_end, FSP_ERR_INVALID… in R_FLASH_HP_Erase()
601 FSP_ERROR_RETURN(start_address + num_bytes <= rom_end, FSP_ERR_INVALID_BLOCKS); in R_FLASH_HP_Erase()
605 …FSP_ERROR_RETURN(start_address + num_bytes <= (BSP_FEATURE_FLASH_CODE_FLASH_START + BSP_ROM_SIZE_B… in R_FLASH_HP_Erase()
[all …]
/hal_renesas-latest/drivers/ra/fsp/inc/instances/
Dr_flash_hp.h96 uint32_t const num_bytes);
102 uint32_t num_bytes,
/hal_renesas-latest/drivers/ra/fsp/inc/api/
Dr_flash_api.h162 uint32_t const num_bytes);
186 …err_t (* blankCheck)(flash_ctrl_t * const p_ctrl, uint32_t const address, uint32_t const num_bytes,