Home
last modified time | relevance | path

Searched refs:dst_h (Results 1 – 11 of 11) sorted by relevance

/external/libdrm/exynos/
Dexynos_fimg2d.c328 unsigned int src_w = 0, src_h = 0, dst_w = 0, dst_h = 0; in g2d_copy() local
358 dst_h = w; in g2d_copy()
362 dst_h = dst->height - dst_y; in g2d_copy()
365 h = MIN(src_h, dst_h); in g2d_copy()
426 unsigned int dst_h, unsigned int negative) in g2d_copy_with_scale() argument
453 if (src_w == dst_w && src_h == dst_h) in g2d_copy_with_scale()
458 scale_y = (double)src_h / (double)dst_h; in g2d_copy_with_scale()
468 if (dst_y + dst_h > dst->height) in g2d_copy_with_scale()
469 dst_h = dst->height - dst_y; in g2d_copy_with_scale()
471 if (src_w <= 0 || src_h <= 0 || dst_w <= 0 || dst_h <= 0) { in g2d_copy_with_scale()
[all …]
Dfimg2d.h320 unsigned int dst_h, unsigned int negative);
/external/mesa3d/src/gallium/state_trackers/xa/
Dxa_yuv.c117 int dst_h, in xa_yuv_planar_blit() argument
127 if (dst_w == 0 || dst_h == 0) in xa_yuv_planar_blit()
141 scale_y = (float)src_h / (float)dst_h; in xa_yuv_planar_blit()
Dxa_context.h59 int dst_h,
Dxa_priv.h230 int dst_y, int dst_w, int dst_h,
Dxa_renderer.c508 int dst_y, int dst_w, int dst_h, struct xa_surface *srf[]) in renderer_draw_yuv() argument
514 dst_x, dst_y, dst_w, dst_h, srf); in renderer_draw_yuv()
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
Ddxgi_native.cpp1105 unsigned dst_w, dst_h; in Present() local
1159 dst_h = rect.bottom - rect.top; in Present()
1168 if(!formats_compatible || src->width0 != dst_w || src->height0 != dst_h) { in Present()
1180 int delta = src->width0 * dst_h - dst_w * src->height0; in Present()
1188 blit_w = dst_h * src->width0 / src->height0; in Present()
1189 blit_h = dst_h; in Present()
1194 blit_h = dst_h; in Present()
1198 blit_y = (dst_h - blit_h) >> 1; in Present()
1205 blit_h = dst_h; in Present()
1209 pipe->clear_render_target(pipe, dst_surface, &black, rect.left, rect.top, blit_x, dst_h); in Present()
[all …]
/external/mesa3d/src/gallium/state_trackers/xorg/
Dxorg_xv.c418 int dst_x, int dst_y, int dst_w, int dst_h) in draw_yuv() argument
427 dst_x, dst_y, dst_w, dst_h, in draw_yuv()
494 int dstX, int dstY, int dst_w, int dst_h, in display_video() argument
550 float diff_y = (float)src_h / (float)dst_h; in display_video()
567 offset_h = dst_h - h; in display_video()
Dxorg_renderer.h58 int dst_x, int dst_y, int dst_w, int dst_h,
Dxorg_renderer.c440 int dst_x, int dst_y, int dst_w, int dst_h, in renderer_draw_yuv() argument
447 dst_x, dst_y, dst_w, dst_h, in renderer_draw_yuv()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c1390 const int dst_h = dst->y_crop_height; in scale_and_extend_frame() local
1398 for (y = 0; y < dst_h; y += 16) { in scale_and_extend_frame()
1403 const int y_q4 = y * (16 / factor) * src_h / dst_h; in scale_and_extend_frame()
1406 const uint8_t *src_ptr = srcs[i] + (y / factor) * src_h / dst_h * in scale_and_extend_frame()
1412 kernel[y_q4 & 0xf], 16 * src_h / dst_h, in scale_and_extend_frame()