Searched defs:aligned_height (Results 1 - 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
H A D | vp9_alloccommon.c | 40 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); local 43 cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
|
/external/libvpx/libvpx/vpx_scale/generic/ |
H A D | yv12config.c | 51 int aligned_height = (height + 15) & ~15; local 53 int yplane_size = (aligned_height + 2 * border) * y_stride; 55 int uv_height = aligned_height >> 1; 81 ybf->y_height = aligned_height; 151 const int aligned_height = (height + 7) & ~7; local 153 const uint64_t yplane_size = (aligned_height + 2 * border) * 156 const int uv_height = aligned_height >> ss_y; 165 const int alpha_height = aligned_height; 237 ybf->y_height = aligned_height;
|
/external/drm_gralloc/ |
H A D | gralloc_drm_intel.c | 247 int aligned_width, aligned_height, bpp; local 258 aligned_height = handle->height; 260 &aligned_width, &aligned_height); 286 aligned_width, aligned_height, 321 aligned_height = ALIGN(aligned_height, 2); 331 aligned_width, aligned_height,
|
H A D | gralloc_drm_radeon.c | 189 int aligned_width, aligned_height; local 204 aligned_height = handle->height; 206 &aligned_width, &aligned_height); 211 aligned_height = ALIGN(aligned_height, 221 size = ALIGN(aligned_height * pitch, RADEON_GPU_PAGE_SIZE);
|
Completed in 166 milliseconds