Searched refs:ALIGN_UP (Results 1 – 9 of 9) sorted by relevance
/external/mesa3d/src/intel/isl/ |
D | isl_tiled_memcpy.c | 48 #define ALIGN_UP(a, b) ALIGN(a, b) macro 312 uint32_t y1 = MIN2(y3, ALIGN_UP(y0, 4)); in linear_to_ytiled() 476 uint32_t y1 = MIN2(y3, ALIGN_UP(y0, 4)); in ytiled_to_linear() 862 xt3 = ALIGN_UP (xt2, tw); in intel_linear_to_tiled() 864 yt3 = ALIGN_UP (yt2, th); in intel_linear_to_tiled() 887 x1 = ALIGN_UP(x0, span); in intel_linear_to_tiled() 962 xt3 = ALIGN_UP (xt2, tw); in intel_tiled_to_linear() 964 yt3 = ALIGN_UP (yt2, th); in intel_tiled_to_linear() 987 x1 = ALIGN_UP(x0, span); in intel_tiled_to_linear()
|
/external/arm-trusted-firmware/drivers/marvell/ |
D | iob.c | 53 win->base_addr = ALIGN_UP(win->base_addr, IOB_WIN_ALIGNMENT); in iob_win_check() 62 win->win_size = ALIGN_UP(win->win_size, IOB_WIN_ALIGNMENT); in iob_win_check()
|
D | io_win.c | 46 win->base_addr = ALIGN_UP(win->base_addr, IO_WIN_ALIGNMENT_1M); in io_win_check() 53 win->win_size = ALIGN_UP(win->win_size, IO_WIN_ALIGNMENT_1M); in io_win_check()
|
D | ccu.c | 71 win->base_addr = ALIGN_UP(win->base_addr, CCU_WIN_ALIGNMENT); in ccu_win_check() 78 win->win_size = ALIGN_UP(win->win_size, CCU_WIN_ALIGNMENT); in ccu_win_check()
|
D | amb_adec.c | 57 win->base_addr = ALIGN_UP(base_addr, AMB_WIN_ALIGNMENT_1M); in amb_check_win()
|
D | gwin.c | 58 win->win_size = ALIGN_UP(win->win_size, GWIN_ALIGNMENT_64M); in gwin_check()
|
/external/arm-trusted-firmware/include/plat/marvell/common/ |
D | mvebu.h | 19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
|
/external/linux-kselftest/tools/testing/selftests/net/ |
D | tcp_mmap.c | 123 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) macro 124 #define ALIGN_PTR_UP(p, ptr_align_to) ((typeof(p))ALIGN_UP((unsigned long)(p), ptr_align_to))
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | protection_keys.c | 55 #define ALIGN_UP(x, align_to) (((x) + ((align_to)-1)) & ~((align_to)-1)) macro 57 #define ALIGN_PTR_UP(p, ptr_align_to) ((typeof(p))ALIGN_UP((unsigned long)(p), ptr_align_to)) 781 size = ALIGN_UP(size, HPAGE_SIZE * 2); in malloc_pkey_anon_huge() 851 size = ALIGN_UP(size, HPAGE_SIZE * 2); in malloc_pkey_hugetlb()
|