Searched refs:aligned_width (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/libvpx/vpx_scale/generic/
H A Dyv12config.c41 int aligned_width = (width + 15) & ~15; local
43 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
45 int uv_width = aligned_width >> 1;
71 ybf->y_width = aligned_width;
128 const int aligned_width = (width + 7) & ~7; local
130 const int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
132 const int uv_width = aligned_width >> ss_x;
139 const int alpha_width = aligned_width;
172 ybf->y_width = aligned_width;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_alloccommon.c55 static void set_mb_mi(VP9_COMMON *cm, int aligned_width, int aligned_height) { argument
56 cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
83 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); local
93 set_mb_mi(cm, aligned_width, aligned_height);
136 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); local
166 set_mb_mi(cm, aligned_width, aligned_height);
220 const int aligned_width = ALIGN_POWER_OF_TWO(cm->width, MI_SIZE_LOG2); local
223 set_mb_mi(cm, aligned_width, aligned_height);
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc60 uint32 aligned_width = r.source.width_alignment + 1; local
61 if (width % aligned_width > 0) {
62 width_padding = aligned_width - width % aligned_width;
/external/opencv/cv/src/
H A Dcvcorner.cpp227 int aligned_width; local
243 aligned_width = cvAlign(size.width, 4);
295 CV_CALL( Dx = cvCreateMat( max_dy, aligned_width, d_depth ));
296 CV_CALL( Dy = cvCreateMat( max_dy, aligned_width, d_depth ));
524 int aligned_width; local
552 aligned_width = cvAlign(size.width, 4);
600 CV_CALL( Dx = cvCreateMat( max_dy, aligned_width, d_depth ));
601 CV_CALL( Dy = cvCreateMat( max_dy, aligned_width, d_depth ));
602 CV_CALL( D2x = cvCreateMat( max_dy, aligned_width, d_depth ));
603 CV_CALL( D2y = cvCreateMat( max_dy, aligned_width, d_dept
[all...]

Completed in 118 milliseconds