HomeSort by relevance Sort by last modified time
    Searched refs:aligned_width (Results 1 - 11 of 11) sorted by null

  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 41 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/
vp9_alloccommon.c 55 static void set_mb_mi(VP9_COMMON *cm, int aligned_width, int aligned_height) {
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);
  /hardware/samsung_slsi/exynos5/libswconverter/
swconvertor.c 154 unsigned int aligned_width, aligned_height; local
159 aligned_width = width & (~0xF);
163 for (j = 0; j<aligned_width; j = j + 16) {
175 if (aligned_width != width) {
190 for (j = 0; j<aligned_width; j = j + 16) {
202 if (aligned_width != width) {
241 unsigned int aligned_width, aligned_height; local
246 aligned_width = width & (~0xF);
250 for (j = 0; j<aligned_width; j = j + 16) {
262 if (aligned_width != width)
325 unsigned int aligned_width, aligned_height; local
    [all...]
csc_tiled_to_linear_uv_neon.s 64 @r10 aligned_width
73 bic r10, r2, #0xF @ aligned_width = width & (~0xF)
107 cmp r10, r2 @ if (aligned_width != width) {
csc_tiled_to_linear_uv_deinterleave_neon.s 67 @r10 aligned_width
76 bic r10, r3, #0xF @ aligned_width = width & (~0xF)
124 cmp r10, r3 @ if (aligned_width != width) {
csc_tiled_to_linear_y_neon.s 65 @r10 aligned_width
74 bic r10, r2, #0xF @ aligned_width = width & (~0xF)
122 cmp r10, r2 @ if (aligned_width != width) {
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysyuv.cc 60 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/
cvcorner.cpp 227 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_depth ))
    [all...]
  /hardware/qcom/display/msm8960/libcopybit/
copybit_c2d.cpp 446 int aligned_width = 0, size = 0; local
454 aligned_width = ALIGN(width, 128);
455 size = aligned_width * aligned_height;
457 yuvInfo.yStride = aligned_width;
458 yuvInfo.plane1_stride = aligned_width;
464 aligned_width = ALIGN(width, 32);
465 yuvInfo.yStride = aligned_width;
466 yuvInfo.plane1_stride = aligned_width;
469 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
471 yuvInfo.plane1_offset = aligned_width * height
534 int aligned_width = ALIGN(surfaceDef.width,32); local
    [all...]
  /hardware/qcom/display/msm8974/libcopybit/
copybit_c2d.cpp 457 int aligned_width = 0, size = 0; local
465 aligned_width = ALIGN(width, 128);
466 size = aligned_width * aligned_height;
468 yuvInfo.yStride = aligned_width;
469 yuvInfo.plane1_stride = aligned_width;
475 aligned_width = ALIGN(width, 32);
476 yuvInfo.yStride = aligned_width;
477 yuvInfo.plane1_stride = aligned_width;
480 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
482 yuvInfo.plane1_offset = aligned_width * height
545 int aligned_width = ALIGN(surfaceDef.width,32); local
    [all...]
  /hardware/qcom/display/msm8x26/libcopybit/
copybit_c2d.cpp 446 int aligned_width = 0, size = 0; local
454 aligned_width = ALIGN(width, 128);
455 size = aligned_width * aligned_height;
457 yuvInfo.yStride = aligned_width;
458 yuvInfo.plane1_stride = aligned_width;
464 aligned_width = ALIGN(width, 32);
465 yuvInfo.yStride = aligned_width;
466 yuvInfo.plane1_stride = aligned_width;
469 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
471 yuvInfo.plane1_offset = aligned_width * height
534 int aligned_width = ALIGN(surfaceDef.width,32); local
    [all...]

Completed in 724 milliseconds