Lines Matching refs:dst_h
328 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()
509 pt.data.y = dst_y + dst_h; in g2d_copy_with_scale()
542 unsigned int src_w = 0, src_h = 0, dst_w = 0, dst_h = 0; in g2d_blend() local
593 dst_h = h; in g2d_blend()
597 dst_h = dst->height - dst_y; in g2d_blend()
600 h = MIN(src_h, dst_h); in g2d_blend()