Home
last modified time | relevance | path

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

/mcuboot-latest/boot/bootutil/src/
Dbootutil_misc.h37 return ALIGN_DOWN(boot_magic_off(fap) - BOOT_MAX_ALIGN, BOOT_MAX_ALIGN); in boot_image_ok_off()
43 return boot_image_ok_off(fap) - BOOT_MAX_ALIGN; in boot_copy_done_off()
49 return boot_swap_info_off(fap) - BOOT_MAX_ALIGN; in boot_swap_size_off()
Dbootutil_public.c60 #if BOOT_MAX_ALIGN == 8
71 .align = BOOT_MAX_ALIGN,
144 return boot_copy_done_off(fap) - BOOT_MAX_ALIGN; in boot_swap_info_off()
297 pad_off = ALIGN_DOWN(off, BOOT_MAX_ALIGN); in boot_write_magic()
325 uint8_t buf[BOOT_MAX_ALIGN]; in boot_write_trailer()
332 if (align > BOOT_MAX_ALIGN) { in boot_write_trailer()
Dbootutil_priv.h165 #if BOOT_MAX_ALIGN == 8
166 #define BOOT_IMG_ALIGN (BOOT_MAX_ALIGN)
Dbootutil_misc.c111 BOOT_MAX_ALIGN * 4 + in boot_trailer_info_sz()
Dloader.c107 #if BOOT_MAX_ALIGN > 1024
108 #define BUF_SZ BOOT_MAX_ALIGN
770 uint8_t buf[BOOT_MAX_ALIGN]; in boot_write_status()
801 memset(buf, erased_val, BOOT_MAX_ALIGN); in boot_write_status()
/mcuboot-latest/boot/bootutil/include/bootutil/
Dbootutil.h69 uint8_t pad1[BOOT_MAX_ALIGN - 1];
71 uint8_t pad2[BOOT_MAX_ALIGN - 1];
73 uint8_t pad3[BOOT_MAX_ALIGN - 1];
74 #if BOOT_MAX_ALIGN > BOOT_MAGIC_SZ
Dbootutil_public.h93 #define BOOT_MAX_ALIGN MCUBOOT_BOOT_MAX_ALIGN macro
94 #define BOOT_MAGIC_ALIGN_SIZE ALIGN_UP(BOOT_MAGIC_SZ, BOOT_MAX_ALIGN)
96 #define BOOT_MAX_ALIGN 8
Denc_key_public.h45 #define BOOT_ENC_KEY_ALIGN_SIZE ALIGN_UP(BOOT_ENC_KEY_SIZE, BOOT_MAX_ALIGN)
Denc_key.h42 #define BOOT_ENC_TLV_ALIGN_SIZE ALIGN_UP(BOOT_ENC_TLV_SIZE, BOOT_MAX_ALIGN)
/mcuboot-latest/sim/mcuboot-sys/csupport/
Drun.c537 return BOOT_MAX_ALIGN; in boot_max_align()
/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c983 uint8_t wbs_aligned[BOOT_MAX_ALIGN]; in bs_upload()
/mcuboot-latest/docs/
Drelease-notes.md162 of the image trailer. If `BOOT_MAX_ALIGN` is kept at 8, the trailer
167 been tested with a `BOOT_MAX_ALIGN` up to 32 bytes.