HomeSort by relevance Sort by last modified time
    Searched defs:aligned_width (Results 1 - 25 of 32) sorted by null

1 2

  /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/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;
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 49 int aligned_width = (width + 15) & ~15; local
51 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
53 int uv_width = aligned_width >> 1;
77 ybf->y_width = aligned_width;
146 const int aligned_width = (width + 7) & ~7; local
148 const int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
151 const int uv_width = aligned_width >> ss_x;
218 ybf->y_width = aligned_width;
  /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);
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_buffer_allocator.cpp 124 uint32_t alloc_type, int *aligned_width,
134 producer_usage, consumer_usage, aligned_width, aligned_height, &tile_enabled);
158 uint32_t aligned_width = 0, aligned_height = 0, buffer_size = 0; local
165 format, producer_usage, consumer_usage, &aligned_width, &aligned_height, &buffer_size);
299 uint32_t aligned_width = 0, aligned_height = 0, buffer_size = 0; local
306 format, producer_usage, consumer_usage, &aligned_width, &aligned_height, &buffer_size);
307 allocated_buffer_info->stride = UINT32(aligned_width);
hwc_display_virtual.cpp 195 int aligned_width, aligned_height; local
197 buffer_allocator_->GetCustomWidthAndHeight(output_handle, &aligned_width, &aligned_height);
199 AdrenoMemInfo::getInstance().getAlignedWidthAndHeight(output_handle, aligned_width,
203 output_buffer_->width = UINT32(aligned_width);
  /hardware/qcom/display/msm8998/sdm/include/core/
buffer_allocator.h 68 uint32_t aligned_width = 0; //!< Specifies aligned allocated buffer width in pixels. member in struct:sdm::AllocatedBufferInfo
  /hardware/qcom/display/msm8998/sdm/libs/hwc/
hwc_buffer_allocator.cpp 90 int aligned_width = 0, aligned_height = 0; local
92 aligned_width, aligned_height);
111 alloc_buffer_info->stride = UINT32(aligned_width);
112 alloc_buffer_info->aligned_width = UINT32(aligned_width);
148 alloc_buffer_info->aligned_width = 0;
192 int aligned_width = 0; local
195 aligned_width, aligned_height);
288 allocated_buffer_info->aligned_width = UINT32(width_aligned);
hwc_display_virtual.cpp 280 int aligned_width, aligned_height; local
283 AdrenoMemInfo::getInstance().getAlignedWidthAndHeight(output_handle, aligned_width,
288 output_buffer_->width = UINT32(aligned_width);
hwc_display_external_test.cpp 225 uint32_t width = buffer_info_.alloc_buffer_info.aligned_width;
419 uint32_t aligned_width = buffer_info_.alloc_buffer_info.aligned_width; local
452 GetStride(format, aligned_width, &buffer_stride);
513 uint32_t aligned_width = buffer_info_.alloc_buffer_info.aligned_width; local
526 GetStride(format, aligned_width, &buffer_stride);
559 uint32_t aligned_width = buffer_info_.alloc_buffer_info.aligned_width; local
596 GetStride(format, aligned_width, &buffer_stride)
    [all...]
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_buffer_allocator.cpp 124 uint32_t alloc_type, int *aligned_width,
134 producer_usage, consumer_usage, aligned_width, aligned_height, &tile_enabled);
158 uint32_t aligned_width = 0, aligned_height = 0, buffer_size = 0; local
165 format, producer_usage, consumer_usage, &aligned_width, &aligned_height, &buffer_size);
299 uint32_t aligned_width = 0, aligned_height = 0, buffer_size = 0; local
306 format, producer_usage, consumer_usage, &aligned_width, &aligned_height, &buffer_size);
307 allocated_buffer_info->stride = UINT32(aligned_width);
308 allocated_buffer_info->aligned_width = UINT32(aligned_width);
hwc_display_virtual.cpp 193 int aligned_width, aligned_height; local
195 buffer_allocator_->GetCustomWidthAndHeight(output_handle, &aligned_width, &aligned_height);
197 AdrenoMemInfo::getInstance().getAlignedWidthAndHeight(output_handle, aligned_width,
201 output_buffer_->width = UINT32(aligned_width);
hwc_layers.cpp 115 int aligned_width, aligned_height; local
117 buffer_allocator_->GetCustomWidthAndHeight(handle, &aligned_width, &aligned_height);
119 AdrenoMemInfo::getInstance().getAlignedWidthAndHeight(handle, aligned_width, aligned_height);
122 layer_buffer->width = UINT32(aligned_width);
  /hardware/qcom/display/msm8996/sdm/libs/utils/
rect.cpp 147 float aligned_width = FLOAT(CeilToMultipleOf(split_width, align_x)); local
150 float aligned_right = rect_temp.left + aligned_width;
  /hardware/qcom/display/msm8998/sdm/libs/utils/
rect.cpp 147 float aligned_width = FLOAT(CeilToMultipleOf(split_width, align_x)); local
150 float aligned_right = rect_temp.left + aligned_width;
  /external/libvpx/libvpx/vp9/encoder/
vp9_ethread.c 59 const int aligned_width = ALIGN_POWER_OF_TWO(cpi->oxcf.width, MI_SIZE_LOG2); local
60 int mi_cols = aligned_width >> MI_SIZE_LOG2;
  /hardware/qcom/display/msm8996/libgralloc1/
gr_buf_mgr.cpp 628 int *aligned_width = va_arg(args, int *); local
636 *aligned_width = INT(alignedw);
723 uint32_t *aligned_width = va_arg(args, uint32_t *); local
727 allocator_->GetBufferSizeAndDimensions(descriptor, size, aligned_width, aligned_height);
  /hardware/qcom/display/msm8998/libgralloc1/
gr_buf_mgr.cpp 609 int *aligned_width = va_arg(args, int *); local
617 *aligned_width = INT(alignedw);
705 uint32_t *aligned_width = va_arg(args, uint32_t *); local
709 allocator_->GetBufferSizeAndDimensions(descriptor, size, aligned_width, aligned_height);
  /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/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...]

Completed in 698 milliseconds

1 2