Home
last modified time | relevance | path

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

/trusted-firmware-m-latest/secure_fw/partitions/firmware_update/bootloader/mcuboot/
Dtfm_mcuboot_fwu.c512 uint32_t blk_sz; in util_img_hash() local
521 for (off = 0; off < data_size; off += blk_sz) { in util_img_hash()
522 blk_sz = data_size - off; in util_img_hash()
523 if (blk_sz > tmp_buf_sz) { in util_img_hash()
524 blk_sz = tmp_buf_sz; in util_img_hash()
527 if (flash_area_read(fap, off, tmpbuf, blk_sz)) { in util_img_hash()
530 status = psa_hash_update(&handle, tmpbuf, blk_sz); in util_img_hash()