Searched refs:ALIGN_UP (Results 1 – 7 of 7) sorted by relevance
/third_party/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 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/ |
D | compress.c | 30 #define LZO_WORK_SIZE ALIGN_UP(LZO1X_1_15_MEM_COMPRESS, 8) 40 #define LZ4_WORK_SIZE ALIGN_UP(LZ4_MEM_COMPRESS, 8)
|
D | segment.c | 635 u32 csize = ALIGN_UP(c.compress.cc.clen + in f2fs_build_file()
|
/third_party/musl/porting/linux/user/ldso/ |
D | cfi.c | 70 #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/ |
D | vf_yadif_cuda.c | 47 #define ALIGN_UP(a, b) (((a) + (b) - 1) & ~((b) - 1)) macro
|
/third_party/f2fs-tools/lib/ |
D | libf2fs.c | 525 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/ |
D | f2fs_fs.h | 458 #define ALIGN_UP(addrs, size) ALIGN_DOWN(((addrs) + (size) - 1), (size)) macro
|