Home
last modified time | relevance | path

Searched refs:ALIGN_UP (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/intel/isl/
Disl_tiled_memcpy.c48 #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/
Diob.c53 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()
Dio_win.c46 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()
Dccu.c71 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()
Damb_adec.c57 win->base_addr = ALIGN_UP(base_addr, AMB_WIN_ALIGNMENT_1M); in amb_check_win()
Dgwin.c58 win->win_size = ALIGN_UP(win->win_size, GWIN_ALIGNMENT_64M); in gwin_check()
/external/arm-trusted-firmware/include/plat/marvell/common/
Dmvebu.h19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
/external/linux-kselftest/tools/testing/selftests/net/
Dtcp_mmap.c123 #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/
Dprotection_keys.c55 #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()