Home
last modified time | relevance | path

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

/third_party/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 linear_to_tiled()
864 yt3 = ALIGN_UP (yt2, th); in linear_to_tiled()
887 x1 = ALIGN_UP(x0, span); in linear_to_tiled()
962 xt3 = ALIGN_UP (xt2, tw); in tiled_to_linear()
964 yt3 = ALIGN_UP (yt2, th); in tiled_to_linear()
987 x1 = ALIGN_UP(x0, span); in tiled_to_linear()
/third_party/f2fs-tools/fsck/
Dcompress.c30 #define LZO_WORK_SIZE ALIGN_UP(LZO1X_1_15_MEM_COMPRESS, 8)
40 #define LZ4_WORK_SIZE ALIGN_UP(LZ4_MEM_COMPRESS, 8)
Dsegment.c635 u32 csize = ALIGN_UP(c.compress.cc.clen + in f2fs_build_file()
/third_party/musl/porting/linux/user/ldso/
Dcfi.c70 #define ALIGN_UP(a, b) (((a) + (b) - 1) & -(b)) macro
342 shadow_size = ALIGN_UP(((max_target_addr >> shadow_granularity) << 1), PAGE_SIZE); in create_cfi_shadow()
415 char* aligned_shadow_end = (char*)ALIGN_UP((uintptr_t)shadow_end, PAGE_SIZE); in fill_shadow_value_to_shadow()
/third_party/ffmpeg/libavfilter/
Dvf_yadif_cuda.c47 #define ALIGN_UP(a, b) (((a) + (b) - 1) & ~((b) - 1)) macro
/third_party/f2fs-tools/lib/
Dlibf2fs.c525 return ALIGN_UP(le64_to_cpu(i->i_size), 1 << i->i_log_cluster_size); in f2fs_max_file_offset()
/third_party/f2fs-tools/include/
Df2fs_fs.h458 #define ALIGN_UP(addrs, size) ALIGN_DOWN(((addrs) + (size) - 1), (size)) macro