Searched refs:ALIGN_UP (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-latest/components/esp_rom/patches/ |
D | esp_rom_cache_esp32s2_esp32s3.c | 17 #define ALIGN_UP(addr, align) (((addr) + (align)-1) & ~((align)-1)) macro 119 addr = ALIGN_UP(start, dcache_line_size); in Cache_WriteBack_Addr()
|
/hal_espressif-latest/components/bootloader_support/src/secure_boot_v2/ |
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_signatures_app.c | 38 #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) macro 61 …size_t sig_block_addr = img_metadata.start_addr + ALIGN_UP(img_metadata.image_len, FLASH_SECTOR_SI… in calculate_image_public_key_digests() 175 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-latest/components/bootloader_support/src/ |
D | esp_image_format.c | 45 #define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1)) macro 858 sig_block_len = ALIGN_UP(end, FLASH_SECTOR_SIZE) - end; in process_appended_hash_and_sig() 867 sig_block_len = ALIGN_UP(end, FLASH_SECTOR_SIZE) - end; in process_appended_hash_and_sig() 936 uint32_t padded_end = ALIGN_UP(end, FLASH_SECTOR_SIZE); in verify_secure_boot_signature()
|
/hal_espressif-latest/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
|