Home
last modified time | relevance | path

Searched refs:aligned_width (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/vpx_scale/generic/
Dyv12config.c50 int aligned_width = (width + 15) & ~15; in vp8_yv12_realloc_frame_buffer() local
52 int y_stride = ((aligned_width + 2 * border) + 31) & ~31; in vp8_yv12_realloc_frame_buffer()
54 int uv_width = aligned_width >> 1; in vp8_yv12_realloc_frame_buffer()
80 ybf->y_width = aligned_width; in vp8_yv12_realloc_frame_buffer()
150 const int aligned_width = (width + 7) & ~7; in vpx_realloc_frame_buffer() local
152 const int y_stride = ((aligned_width + 2 * border) + 31) & ~31; in vpx_realloc_frame_buffer()
155 const int uv_width = aligned_width >> ss_x; in vpx_realloc_frame_buffer()
164 const int alpha_width = aligned_width; in vpx_realloc_frame_buffer()
236 ybf->y_width = aligned_width; in vpx_realloc_frame_buffer()
/external/drm_gralloc/
Dgralloc_drm_intel.c247 int aligned_width, aligned_height, bpp; in alloc_ibo() local
257 aligned_width = handle->width; in alloc_ibo()
260 &aligned_width, &aligned_height); in alloc_ibo()
272 aligned_width = ALIGN(aligned_width, 64); in alloc_ibo()
276 *stride = aligned_width * bpp; in alloc_ibo()
286 aligned_width, aligned_height, in alloc_ibo()
320 aligned_width = ALIGN(aligned_width, 4); in alloc_ibo()
331 aligned_width, aligned_height, in alloc_ibo()
Dgralloc_drm_rockchip.c43 int ret, cpp, pitch, aligned_width, aligned_height; in drm_gem_rockchip_alloc() local
58 aligned_width = handle->width; in drm_gem_rockchip_alloc()
61 &aligned_width, &aligned_height); in drm_gem_rockchip_alloc()
64 pitch = ALIGN(aligned_width * cpp, 64); in drm_gem_rockchip_alloc()
Dgralloc_drm_radeon.c189 int aligned_width, aligned_height; in radeon_alloc() local
203 aligned_width = handle->width; in radeon_alloc()
206 &aligned_width, &aligned_height); in radeon_alloc()
209 aligned_width = ALIGN(aligned_width, in radeon_alloc()
220 pitch = aligned_width * cpp; in radeon_alloc()
/external/opencv/cv/src/
Dcvcorner.cpp227 int aligned_width; in icvCornerEigenValsVecs() local
243 aligned_width = cvAlign(size.width, 4); in icvCornerEigenValsVecs()
295 CV_CALL( Dx = cvCreateMat( max_dy, aligned_width, d_depth )); in icvCornerEigenValsVecs()
296 CV_CALL( Dy = cvCreateMat( max_dy, aligned_width, d_depth )); in icvCornerEigenValsVecs()
524 int aligned_width; in cvPreCornerDetect() local
552 aligned_width = cvAlign(size.width, 4); in cvPreCornerDetect()
600 CV_CALL( Dx = cvCreateMat( max_dy, aligned_width, d_depth )); in cvPreCornerDetect()
601 CV_CALL( Dy = cvCreateMat( max_dy, aligned_width, d_depth )); in cvPreCornerDetect()
602 CV_CALL( D2x = cvCreateMat( max_dy, aligned_width, d_depth )); in cvPreCornerDetect()
603 CV_CALL( D2y = cvCreateMat( max_dy, aligned_width, d_depth )); in cvPreCornerDetect()
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_alloccommon.c39 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); in vp9_set_mb_mi() local
42 cm->mi_cols = aligned_width >> MI_SIZE_LOG2; in vp9_set_mb_mi()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ethread.c56 const int aligned_width = ALIGN_POWER_OF_TWO(cpi->oxcf.width, MI_SIZE_LOG2); in get_max_tile_cols() local
57 int mi_cols = aligned_width >> MI_SIZE_LOG2; in get_max_tile_cols()
/external/libvncserver/libvncserver/
Dtight.c1502 int aligned_width; \
1507 aligned_width = w - w % 8; \
1510 for (x = 0; x < aligned_width; x += 8) { \