Searched defs:ALIGN (Results 1 - 8 of 8) sorted by relevance

/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/include/exynos/
H A DExynos_OMX_Macros.h37 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) macro
/hardware/qcom/display/libgralloc/
H A Dgr.h44 inline size_t ALIGN(size_t x, size_t align) { function
/hardware/samsung_slsi/exynos5/include/
H A Dexynos_format.h61 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) macro
H A DExynosCamera.h74 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) macro
/hardware/ti/omap4xxx/hwc/
H A Dhal_public.h33 #define ALIGN(x,a) (((x) + (a) - 1L) & ~((a) - 1L)) macro
/hardware/msm7k/libgralloc-qsd8k/
H A Dgpu.cpp199 static inline size_t ALIGN(size_t x, size_t align) { function
210 alignedw = ALIGN(w, 32);
211 alignedh = ALIGN(h, 32);
229 size = ALIGN(alignedw*alignedh, 4096);
230 size += ALIGN(2 * ALIGN(w/2, 32) * ALIGN(h/2, 32), 4096);
236 alignedw = ALIGN(w, 128);
237 size = ALIGN( alignedw * alignedh, 8192);
238 size += ALIGN( aligned
[all...]
/hardware/samsung_slsi/exynos5/libcsc/
H A Dcsc.c57 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) macro
394 ALIGN(csc_handle->src_format.width, GSCALER_IMG_ALIGN),
395 ALIGN(csc_handle->src_format.height, GSCALER_IMG_ALIGN),
406 ALIGN(csc_handle->dst_format.width, GSCALER_IMG_ALIGN),
407 ALIGN(csc_handle->dst_format.height, GSCALER_IMG_ALIGN),
/hardware/qcom/media/libc2dcolorconvert/
H A DC2DColorConverter.cpp44 #define ALIGN( num, to ) (((num) + (to-1)) & (~(to-1))) macro
399 return ALIGN(width, ALIGN32) * 2; // RGB565 has width as twice
401 return ALIGN(width, ALIGN32) * 4;
403 return ALIGN(width, ALIGN128);
405 return ALIGN(width, ALIGN32);
407 return ALIGN(width, ALIGN16);
411 return ALIGN(width, ALIGN16);
421 return (ALIGN(width, ALIGN32) * height);
425 return ALIGN(width, ALIGN16) * height;
427 return ALIGN(ALIG
[all...]

Completed in 1724 milliseconds