Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/vc4/kernel/
Dvc4_validate.c172 aligned_width = round_up(width, utile_w); in vc4_check_tex_size()
176 aligned_width = round_up(width, utile_w * 8); in vc4_check_tex_size()
177 aligned_height = round_up(height, utile_h * 8); in vc4_check_tex_size()
180 aligned_width = round_up(width, utile_w); in vc4_check_tex_size()
181 aligned_height = round_up(height, utile_h); in vc4_check_tex_size()
693 aligned_width = round_up(level_width, utile_w * 8); in reloc_tex()
694 aligned_height = round_up(level_height, utile_h * 8); in reloc_tex()
697 aligned_width = round_up(level_width, utile_w); in reloc_tex()
698 aligned_height = round_up(level_height, utile_h); in reloc_tex()
701 aligned_width = round_up(level_width, utile_w); in reloc_tex()
/external/avb/examples/uefi/
Duefi_avb_boot.c109 static size_t round_up(size_t value, size_t size) { in round_up() function
203 offset += round_up(header->kernel_size, header->page_size); in uefi_avb_boot_kernel()
205 offset += round_up(header->ramdisk_size, header->page_size); in uefi_avb_boot_kernel()
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_simulator_validate.h46 #define round_up(x, y) align(x, y) macro
/external/libdrm/omap/
Domap_drm.c50 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) macro
219 bo->size = round_up(size.tiled.width, PAGE_SIZE) * size.tiled.height; in omap_bo_new_impl()
/external/autotest/client/tests/fsx/
D0001-Minor-fixes-to-PAGE_SIZE-handling.patch39 static void *round_up(void *ptr, unsigned long align, unsigned long offset)
/external/python/cpython2/Objects/
Dfloatobject.c1457 int half_eps, digit, round_up, sign=1; in float_fromhex() local
1649 round_up = 0; in float_fromhex()
1652 round_up = 1; in float_fromhex()
1656 round_up = 1; in float_fromhex()
1659 if (round_up == 1) { in float_fromhex()
Dintobject.c1005 int round_up; in int_float() local
1031 round_up = (abs_ival & lsb) && (abs_ival & (3*lsb-1)); in int_float()
1033 if (round_up) in int_float()
/external/syslinux/efi/
Dmain.c459 static inline UINT64 round_up(UINT64 x, UINT64 y) in round_up() function
507 start = round_up(best, align); in find_addr()
/external/v8/src/crankshaft/x87/
Dlithium-codegen-x87.cc5121 Label round_up; in DoClampTToUint8NoSSE2() local
5123 __ j(greater, &round_up, Label::kNear); in DoClampTToUint8NoSSE2()
5125 __ j(not_zero, &round_up, Label::kNear); in DoClampTToUint8NoSSE2()
5129 __ bind(&round_up); in DoClampTToUint8NoSSE2()