Searched refs:FIT_ALIGN (Results 1 – 7 of 7) sorted by relevance
310 blk_off = (FIT_ALIGN(fdt_totalsize(fit)) + offset) / dev_desc->blksz; in fit_image_load_one()351 off[0] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()354 off[1] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()357 off[2] = offset + FIT_ALIGN(size); in fit_image_get_bootables_size()362 return FIT_ALIGN(fdt_totalsize(fit)) + max_off; in fit_image_get_bootables_size()432 part.start + ((FIT_ALIGN(fdt_totalsize(fit)) + offset) / dev_desc->blksz)); in fit_image_init_resource()
65 size = FIT_ALIGN(size); in locate_dtb_in_fit()
361 fit_size = FIT_ALIGN(fit_size); in splash_load_fit()
920 data_off += (ulong)fit + FIT_ALIGN(fdt_totalsize(fit)); in fit_image_get_data()
524 buf_ptr += FIT_ALIGN(len); in fit_extract_data()533 new_size = FIT_ALIGN(new_size); in fit_extract_data()592 data_base = FIT_ALIGN(fit_size); in fit_import_data()
404 size = FIT_ALIGN(size); in spl_fit_load_blob()405 *base_offset = FIT_ALIGN(size); in spl_fit_load_blob()
958 #define FIT_ALIGN(x) (((x)+IMAGE_ALIGN_SIZE-1)&~(IMAGE_ALIGN_SIZE-1)) macro