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

1 2

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_alpha.c 75 const unsigned dst_width = 8; local
80 alpha = lp_build_clamped_float_to_unsigned_norm(gallivm, type, dst_width, alpha);
81 ref = lp_build_clamped_float_to_unsigned_norm(gallivm, type, dst_width, ref);
  /external/opencv3/3rdparty/libwebp/utils/
rescaler.h 34 int dst_width, dst_height; // destination dimensions member in struct:__anon20478
43 int dst_width, int dst_height, int dst_stride,
  /external/webp/src/utils/
rescaler.h 42 int dst_width, dst_height; // destination dimensions member in struct:WebPRescaler
53 int dst_width, int dst_height, int dst_stride,
  /external/webrtc/webrtc/common_video/libyuv/
webrtc_libyuv.cc 240 int dst_width = dst_frame->width(); local
245 dst_width = dst_frame->height();
257 dst_width, dst_height,
  /external/libyuv/files/util/
convert.cc 32 int dst_width = 0, dst_height = 0; // new width and height variable
95 dst_width = atoi(argv[++c]); // NOLINT
147 if (dst_width == 0 || dst_height == 0) {
149 dst_width = rec_width;
152 dst_width = Abs(image_width);
164 int dst_width, int dst_height,
167 for (int x = 0; x < dst_width; x += kTileX) {
169 if (x + clip_width > dst_width) {
170 clip_width = dst_width - x;
179 dst_width, dst_height
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_encoder_adapter.cc 276 int dst_width = streaminfos_[stream_idx].width; local
283 if ((dst_width == src_width && dst_height == src_height) ||
291 dst_frame.CreateEmptyFrame(dst_width, dst_height, dst_width,
292 (dst_width + 1) / 2, (dst_width + 1) / 2);
299 dst_frame.buffer(kVPlane), dst_frame.stride(kVPlane), dst_width,
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 536 float dst_width = frame.width(); local
538 if (src_width != dst_width || src_height != dst_height) {
539 float sx = dst_width / src_width;
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 388 unsigned dst_width = u_minify(info->dst.res->width0, info->dst.level); local
394 dst_width == info->src.res->width0 &&
398 info->dst.x1 == dst_width &&
402 info->src.x1 == dst_width &&
  /external/opencv/cv/src/
cvderiv.cpp 50 int dst_width, buffer_step = 0; local
60 dst_width = src_size.width - 2;
67 src_size.width = dst_width;
70 dst_width = 0;
73 assert( src_step >= src_size.width && dst_step >= dst_width );
97 for( x = 0; x < dst_width; x++ )
    [all...]
cvlkpyramid.cpp 229 int src_width = src_size.width, dst_width = src_size.width-2; local
248 for( x = 0; x < dst_width; x++ )
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 117 int i, j, dst_width, dst_height, dst_widthc, dst_heightc; local
213 dst_width = 20;
218 dst_width = 16;
227 dst_width = 12;
234 memcpy(curL, pred_block, dst_width);
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/
resource_default.cpp 432 float dst_width = dst_rect.right - dst_rect.left; local
435 if ((src_width > hw_res_info_.max_pipe_width) || (dst_width > hw_res_info_.max_pipe_width)) {
578 float dst_width = dst->right - dst->left; local
590 left_cut_ratio = (sci_left - dst_left) / dst_width;
596 right_cut_ratio = (dst_right - sci_right) / dst_width;
670 float dst_width = dst.right - dst.left; local
673 if ((UINT32(crop_width - dst_width) == 1) || (UINT32(crop_height - dst_height) == 1)) {
675 "crop_h = %.0f, dst_h = %.0f", crop_width, dst_width, crop_height, dst_height);
776 float dst_width = dst.right - dst.left; local
779 *scale_x = crop_width / dst_width;
816 float dst_width = dst_rect.right - dst_rect.left; local
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/libs/core/
resource_default.cpp 432 float dst_width = dst_rect.right - dst_rect.left; local
435 if ((src_width > hw_res_info_.max_pipe_width) || (dst_width > hw_res_info_.max_pipe_width)) {
578 float dst_width = dst->right - dst->left; local
590 left_cut_ratio = (sci_left - dst_left) / dst_width;
596 right_cut_ratio = (dst_right - sci_right) / dst_width;
670 float dst_width = dst.right - dst.left; local
673 if ((UINT32(crop_width - dst_width) == 1) || (UINT32(crop_height - dst_height) == 1)) {
675 "crop_h = %.0f, dst_h = %.0f", crop_width, dst_width, crop_height, dst_height);
776 float dst_width = dst.right - dst.left; local
779 *scale_x = crop_width / dst_width;
816 float dst_width = dst_rect.right - dst_rect.left; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_blitter.c 117 unsigned dst_width; member in struct:blitter_context_priv
503 ctx->vertices[0][0][0] = (float)x1 / ctx->dst_width * 2.0f - 1.0f; /*v0.x*/
506 ctx->vertices[1][0][0] = (float)x2 / ctx->dst_width * 2.0f - 1.0f; /*v1.x*/
509 ctx->vertices[2][0][0] = (float)x2 / ctx->dst_width * 2.0f - 1.0f; /*v2.x*/
512 ctx->vertices[3][0][0] = (float)x1 / ctx->dst_width * 2.0f - 1.0f; /*v3.x*/
519 ctx->viewport.scale[0] = 0.5f * ctx->dst_width;
523 ctx->viewport.translate[0] = 0.5f * ctx->dst_width;
652 ctx->dst_width = width;
    [all...]
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_mdp_ext.h 232 uint32_t dst_width; member in struct:mdp_scale_data_v2
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_mdp_ext.h 619 uint32_t dst_width; member in struct:mdp_scale_data_v2
  /external/opencv3/3rdparty/libwebp/dec/
vp8l.c 408 const int dst_width = rescaler->dst_width; local
413 VP8LConvertFromBGRA(src, dst_width, colorspace, dst);
521 const int dst_width = rescaler->dst_width; local
525 ConvertToYUVA(src, dst_width, y_pos, dec->output_);
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 544 int dst_width = dst_rect.Width(); local
546 ::StretchDIBits(m_hDC, left, top, dst_width, dst_height, 0, 0, dst_width,
    [all...]
  /external/webp/src/dec/
vp8l.c 526 const int dst_width = rescaler->dst_width; local
531 WebPMultARGBRow(src, dst_width, 1);
532 VP8LConvertFromBGRA(src, dst_width, colorspace, dst);
607 const int dst_width = rescaler->dst_width; local
611 WebPMultARGBRow(src, dst_width, 1);
612 ConvertToYUVA(src, dst_width, y_pos, dec->output_);
    [all...]
  /hardware/qcom/display/msm8996/sdm/include/private/
hw_info_types.h 352 uint32_t dst_width = 0; member in struct:sdm::HWScaleData
  /hardware/qcom/display/msmcobalt/sdm/include/private/
hw_info_types.h 355 uint32_t dst_width = 0; member in struct:sdm::HWScaleData
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/drm/
i915_drm.h 794 __u16 dst_width; member in struct:drm_intel_overlay_put_image
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/drm/
i915_drm.h 818 __u16 dst_width; member in struct:drm_intel_overlay_put_image
  /bionic/libc/kernel/uapi/drm/
i915_drm.h 674 __u16 dst_width; member in struct:drm_intel_overlay_put_image
  /external/kernel-headers/original/uapi/drm/
i915_drm.h 1008 __u16 dst_width; member in struct:drm_intel_overlay_put_image
    [all...]

Completed in 977 milliseconds

1 2