Searched refs:IS_ALIGNED (Results 1 – 1 of 1) sorted by relevance
/mcuboot-latest/boot/espressif/port/ |
D | esp_mcuboot.c | 43 #ifndef IS_ALIGNED 44 # define IS_ALIGNED(num, align) (ALIGN_OFFSET((num), (align)) == 0) macro 49 _Static_assert(IS_ALIGNED(FLASH_BUFFER_SIZE, 4), "Buffer size for SPI Flash operations must be 4-by… 153 if (IS_ALIGNED(addr, 4) && IS_ALIGNED((uintptr_t)dest, 4) && IS_ALIGNED(size, 4)) { in aligned_flash_read() 229 if (IS_ALIGNED(dest_addr, 4) && IS_ALIGNED((uintptr_t)src, 4) && IS_ALIGNED(size, 4)) { in aligned_flash_write()
|