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

  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 50 int aligned_width = (width + 15) & ~15; local
52 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
54 int uv_width = aligned_width >> 1;
80 ybf->y_width = aligned_width;
150 const int aligned_width = (width + 7) & ~7; local
152 const int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
155 const int uv_width = aligned_width >> ss_x;
164 const int alpha_width = aligned_width;
236 ybf->y_width = aligned_width;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
yv12config.c 52 int aligned_width = (width + 15) & ~15; local
54 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
56 int uv_width = aligned_width >> 1;
82 ybf->y_width = aligned_width;
144 const int aligned_width = (width + 7) & ~7; local
147 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
150 const int uv_width = aligned_width >> ss_x;
157 const int alpha_width = aligned_width;
245 ybf->y_width = aligned_width;
  /external/drm_gralloc/
gralloc_drm_rockchip.c 43 int ret, cpp, pitch, aligned_width, aligned_height; local
58 aligned_width = handle->width;
61 &aligned_width, &aligned_height);
64 pitch = ALIGN(aligned_width * cpp, 64);
gralloc_drm_intel.c 247 int aligned_width, aligned_height, bpp; local
257 aligned_width = handle->width;
260 &aligned_width, &aligned_height);
272 aligned_width = ALIGN(aligned_width, 64);
276 *stride = aligned_width * bpp;
286 aligned_width, aligned_height,
320 aligned_width = ALIGN(aligned_width, 4);
331 aligned_width, aligned_height
    [all...]
gralloc_drm_radeon.c 189 int aligned_width, aligned_height; local
203 aligned_width = handle->width;
206 &aligned_width, &aligned_height);
209 aligned_width = ALIGN(aligned_width,
220 pitch = aligned_width * cpp;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_alloccommon.c 31 static void set_mb_mi(VP9_COMMON *cm, int aligned_width, int aligned_height) {
32 cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
117 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); local
126 set_mb_mi(cm, aligned_width, aligned_height);
163 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); local
190 set_mb_mi(cm, aligned_width, aligned_height);
228 const int aligned_width = ALIGN_POWER_OF_TWO(cm->width, MI_SIZE_LOG2); local
231 set_mb_mi(cm, aligned_width, aligned_height);
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_buffer_allocator.cpp 86 int aligned_width = 0, aligned_height = 0; local
88 aligned_width, aligned_height);
106 alloc_buffer_info->stride = UINT32(aligned_width);
179 int aligned_width = 0; local
182 aligned_width, aligned_height);
hwc_display.cpp 439 int aligned_width; local
454 usage, aligned_width, aligned_height); local
455 layer_buffer->width = UINT32(aligned_width);
    [all...]
  /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/media/msm8996/libc2dcolorconvert/
C2DColorConverter.h 69 int padding_threshold, int *aligned_width, int * aligned_height);
  /external/libvpx/libvpx/vp9/common/
vp9_alloccommon.c 39 const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2); local
42 cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
  /external/libvpx/libvpx/vp9/encoder/
vp9_ethread.c 56 const int aligned_width = ALIGN_POWER_OF_TWO(cpi->oxcf.width, MI_SIZE_LOG2); local
57 int mi_cols = aligned_width >> MI_SIZE_LOG2;
  /hardware/qcom/display/msm8996/sdm/libs/utils/
rect.cpp 146 float aligned_width = FLOAT(CeilToMultipleOf(split_width, align_x)); local
149 float aligned_right = rect_temp.left + aligned_width;
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_surfacetexture.cpp 749 int aligned_width, aligned_height; local
756 aligned_width = bufinfo.crop.right - bufinfo.crop.left;
758 aligned_width = ALIGN_UP(bufinfo.crop.right - bufinfo.crop.left, ALIGN_WIDTH);
761 printf("aligned width: %d height: %d \n", aligned_width, aligned_height);
774 aligned_width, aligned_height, bufinfo.format);
780 if ((aligned_width != bufinfo.width) || (aligned_height != bufinfo.height) ||
785 Rect bounds(aligned_width, aligned_height);
808 aligned_width,
  /hardware/qcom/display/msm8084/libcopybit/
copybit_c2d.cpp 456 int aligned_width = 0, size = 0; local
464 aligned_width = ALIGN(width, 128);
465 size = aligned_width * aligned_height;
467 yuvInfo.yStride = aligned_width;
468 yuvInfo.plane1_stride = aligned_width;
474 aligned_width = ALIGN(width, 32);
475 yuvInfo.yStride = aligned_width;
476 yuvInfo.plane1_stride = aligned_width;
479 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
481 yuvInfo.plane1_offset = aligned_width * height
544 int aligned_width = ALIGN((int)surfaceDef.width,32); local
    [all...]
  /hardware/qcom/display/msm8226/libcopybit/
copybit_c2d.cpp 462 int aligned_width = 0, size = 0; local
470 aligned_width = ALIGN(width, 128);
471 size = aligned_width * aligned_height;
473 yuvInfo.yStride = aligned_width;
474 yuvInfo.plane1_stride = aligned_width;
480 aligned_width = ALIGN(width, 32);
481 yuvInfo.yStride = aligned_width;
482 yuvInfo.plane1_stride = aligned_width;
485 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
487 yuvInfo.plane1_offset = aligned_width * height
550 int aligned_width = ALIGN((int)surfaceDef.width,32); local
    [all...]
  /hardware/qcom/display/msm8909/libcopybit/
copybit_c2d.cpp 461 int aligned_width = 0, size = 0; local
469 aligned_width = ALIGN(width, 128);
470 size = aligned_width * aligned_height;
472 yuvInfo.yStride = aligned_width;
473 yuvInfo.plane1_stride = aligned_width;
479 aligned_width = ALIGN(width, 32);
480 yuvInfo.yStride = aligned_width;
481 yuvInfo.plane1_stride = aligned_width;
484 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
486 yuvInfo.plane1_offset = aligned_width * height
549 int aligned_width = ALIGN((int)surfaceDef.width,32); local
    [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/msm8994/libcopybit/
copybit_c2d.cpp 465 int aligned_width = 0, size = 0; local
473 aligned_width = ALIGN(width, 128);
474 size = aligned_width * aligned_height;
476 yuvInfo.yStride = aligned_width;
477 yuvInfo.plane1_stride = aligned_width;
483 aligned_width = ALIGN(width, 32);
484 yuvInfo.yStride = aligned_width;
485 yuvInfo.plane1_stride = aligned_width;
488 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
490 yuvInfo.plane1_offset = aligned_width * height
553 int aligned_width = ALIGN((int)surfaceDef.width,32); local
    [all...]
  /hardware/qcom/display/msm8996/libcopybit/
copybit_c2d.cpp 463 int aligned_width = 0, size = 0; local
471 aligned_width = ALIGN(width, 128);
472 size = aligned_width * aligned_height;
474 yuvInfo.yStride = aligned_width;
475 yuvInfo.plane1_stride = aligned_width;
481 aligned_width = ALIGN(width, 32);
482 yuvInfo.yStride = aligned_width;
483 yuvInfo.plane1_stride = aligned_width;
486 yuvInfo.plane1_offset = ALIGN(aligned_width * height, 2048);
488 yuvInfo.plane1_offset = aligned_width * height
555 int aligned_width = ALIGN((int)surfaceDef.width,32); local
    [all...]
  /external/libvncserver/libvncserver/
tight.c     [all...]

Completed in 830 milliseconds