Searched refs:ALIGN_UP (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-3.7.0/components/bootloader_support/src/secure_boot_v2/ |
D | secure_boot_signatures_app.c | 37 #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) macro 72 size_t sig_block_addr = metadata.start_addr + ALIGN_UP(metadata.image_len, FLASH_SECTOR_SIZE); in esp_secure_boot_get_signature_blocks_for_running_app() 134 uint32_t padded_length = ALIGN_UP(length, FLASH_SECTOR_SIZE); in esp_secure_boot_verify_signature()
|
D | secure_boot_signatures_bootloader.c | 25 #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) macro 33 uint32_t padded_length = ALIGN_UP(length, FLASH_SECTOR_SIZE); in esp_secure_boot_verify_signature()
|
D | secure_boot.c | 26 #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) macro 71 size_t sig_block_addr = flash_offset + ALIGN_UP(flash_size, FLASH_SECTOR_SIZE); in s_calculate_image_public_key_digests()
|
/hal_espressif-3.7.0/components/esp_hw_support/test_apps/dma/main/ |
D | test_async_memcpy.c | 23 #define ALIGN_UP(addr, align) (((addr) + (align)-1) & ~((align)-1)) macro 66 from_addr = (uint8_t *)ALIGN_UP((uint32_t)(src_buf), test_context->align); in async_memcpy_setup_testbench() 67 to_addr = (uint8_t *)ALIGN_UP((uint32_t)(dst_buf), test_context->align); in async_memcpy_setup_testbench()
|
/hal_espressif-3.7.0/components/bootloader_support/src/ |
D | esp_image_format.c | 43 #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) macro 792 sig_block_len = ALIGN_UP(end, FLASH_SECTOR_SIZE) - end; in process_appended_hash_and_sig() 801 sig_block_len = ALIGN_UP(end, FLASH_SECTOR_SIZE) - end; in process_appended_hash_and_sig() 870 uint32_t padded_end = ALIGN_UP(end, FLASH_SECTOR_SIZE); in verify_secure_boot_signature()
|
/hal_espressif-3.7.0/components/heap/ |
D | multi_heap.c | 72 #define ALIGN_UP(X) ALIGN((X)+sizeof(void *)-1) macro
|
D | multi_heap_poisoning.c | 50 #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) macro
|