/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...] |
/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...] |
/external/webp/src/enc/ |
picture_rescale.c | 166 int dst_width, int dst_height, int dst_stride, 172 dst, dst_width, dst_height, dst_stride,
|
/external/webrtc/talk/media/base/ |
videoframe.cc | 219 VideoFrame* VideoFrame::Stretch(size_t dst_width, size_t dst_height, 221 VideoFrame* dest = CreateEmptyFrame(static_cast<int>(dst_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/libvpx/libvpx/third_party/libyuv/source/ |
row_mips.cc | [all...] |
/external/libyuv/files/source/ |
row_mips.cc | [all...] |
planar_functions.cc | 658 uint8* dst_ptr, int dst_width) = ScaleRowDown2Box_C; [all...] |
/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...] |
io.c | 377 dst, p->scaler_y.dst_width); 418 const int width = p->scaler_a.dst_width; 445 const int width = p->scaler_a.dst_width;
|
/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...] |
io.c | 281 p->scaler_a.dst_width, num_lines_out, 1); 350 dst, p->scaler_y.dst_width); 393 const int width = p->scaler_a.dst_width; 421 const int width = p->scaler_a.dst_width;
|
/external/webp/src/dsp/ |
rescaler_mips_dsp_r2.c | 29 const int x_out_max = wrk->dst_width * wrk->num_channels; 169 const int x_out_max = wrk->dst_width * wrk->num_channels;
|
/hardware/qcom/display/msm8996/sdm/libs/core/fb/ |
hw_scale.cpp | 186 mdp_scale->dst_width = scale_data.dst_width;
|
/hardware/qcom/msm8996/kernel-headers/linux/ |
msm_mdp_ext.h | 232 uint32_t dst_width; member in struct:mdp_scale_data_v2
|
/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/mesa/drivers/dri/radeon/ |
radeon_common_context.h | 491 unsigned dst_width,
|
/external/opencv3/3rdparty/libwebp/enc/ |
picture.c | 379 int dst_width, int dst_height, int dst_stride, 385 dst, dst_width, dst_height, dst_stride, 387 src_width, dst_width, 390 memset(work, 0, 2 * dst_width * num_channels * sizeof(*work)); [all...] |
/external/mesa3d/src/gallium/state_trackers/vega/ |
image.c | 84 VGfloat dst_width, VGfloat dst_height) 91 dst_bounds[2] = dst_width;
|
/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...] |
/external/opencv/cv/include/ |
cv.h | 99 dst_width = floor(src_width/2)[+1], 107 dst_width = src_width*2, 367 dst(x,y) <- src(x + center.x - dst_width/2, y + center.y - dst_height/2). [all...] |
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
imgproc_c.h | 143 dst_width = floor(src_width/2)[+1], 152 dst_width = src_width*2, 387 dst(x,y) <- src(x + center.x - dst_width/2, y + center.y - dst_height/2). [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/mesa3d/src/gallium/state_trackers/xa/ |
xa_tgsi.c | 47 * CONST[0] = (2/dst_width, 2/dst_height, 1, 1)
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_exa_tgsi.c | 23 * CONST[0] = (2/dst_width, 2/dst_height, 1, 1)
|