Lines Matching refs:block_size
31 unsigned int block_size,
226 unsigned int block_size, in bl1_fwu_image_copy() argument
262 if ((image_src == 0U) || (block_size == 0U) || in bl1_fwu_image_copy()
263 check_uptr_overflow(image_src, block_size - 1)) { in bl1_fwu_image_copy()
326 if (block_size > remaining) { in bl1_fwu_image_copy()
328 block_size = remaining; in bl1_fwu_image_copy()
332 if (bl1_plat_mem_check(image_src, block_size, flags) != 0) { in bl1_fwu_image_copy()
353 (void)memcpy((void *) dest_addr, (const void *) image_src, block_size); in bl1_fwu_image_copy()
354 flush_dcache_range(dest_addr, block_size); in bl1_fwu_image_copy()
356 desc->copied_size += block_size; in bl1_fwu_image_copy()
357 desc->state = (block_size == remaining) ? in bl1_fwu_image_copy()