Home
last modified time | relevance | path

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

/external/arm-trusted-firmware/bl1/
Dbl1_fwu.c274 assert(desc->copied_size != 0U); in bl1_fwu_image_copy()
281 assert(desc->copied_size < image_size); in bl1_fwu_image_copy()
318 desc->copied_size = 0; in bl1_fwu_image_copy()
325 remaining = image_size - desc->copied_size; in bl1_fwu_image_copy()
352 dest_addr = desc->image_info.image_base + desc->copied_size; in bl1_fwu_image_copy()
356 desc->copied_size += block_size; in bl1_fwu_image_copy()
717 if (desc->copied_size != 0U) { in bl1_fwu_image_reset()
723 desc->copied_size); in bl1_fwu_image_reset()
725 desc->copied_size); in bl1_fwu_image_reset()
729 desc->copied_size = 0; in bl1_fwu_image_reset()
/external/arm-trusted-firmware/docs/security_advisories/
Dsecurity-advisory-tfv-1.rst70 if (image_desc->copied_size + block_size >
73 image_desc->copied_size;
87 base_addr += image_desc->copied_size;
88 image_desc->copied_size += block_size;
/external/arm-trusted-firmware/include/export/common/
Dbl_common_exp.h75 uint32_t copied_size; /* image size copied in blocks */ member
/external/compiler-rt/lib/esan/
Desan_interceptors.cpp256 uptr copied_size = srclen + 1 > n ? n : srclen + 1; in INTERCEPTOR() local
257 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, dst, copied_size); in INTERCEPTOR()
258 COMMON_INTERCEPTOR_READ_RANGE(ctx, src, copied_size); in INTERCEPTOR()