Home
last modified time | relevance | path

Searched refs:dst_height (Results 1 – 9 of 9) sorted by relevance

/external/libyuv/files/source/
Dgeneral.cc75 int dst_width, int dst_height) in I420Crop() argument
80 if (src_width == dst_width && src_height == dst_height) { in I420Crop()
82 return 3 * dst_height * dst_width / 2; in I420Crop()
84 if (dst_width > src_width || dst_height > src_height) { in I420Crop()
92 int halfdst_height = dst_height / 2; in I420Crop()
95 int crop_height = ( src_height - dst_height ) / 2; in I420Crop()
98 for (i = src_width * crop_height + crop_width; loop < dst_height ; in I420Crop()
124 int dst_width, int dst_height) in I420CropPad() argument
126 if (src_width < 1 || dst_width < 1 || src_height < 1 || dst_height < 1) { in I420CropPad()
129 if (src_width == dst_width && src_height == dst_height) { in I420CropPad()
[all …]
Dscale.cc2732 int dst_width, int dst_height, in ScalePlaneDown2() argument
2760 for (int y = 0; y < dst_height; ++y) { in ScalePlaneDown2()
2774 int dst_width, int dst_height, in ScalePlaneDown4() argument
2802 for (int y = 0; y < dst_height; ++y) { in ScalePlaneDown4()
2817 int dst_width, int dst_height, in ScalePlaneDown8() argument
2837 for (int y = 0; y < dst_height; ++y) { in ScalePlaneDown8()
2851 int dst_width, int dst_height, in ScalePlaneDown34() argument
2894 for (int y = 0; y < dst_height; ++y) { in ScalePlaneDown34()
2928 int dst_width, int dst_height, in ScalePlaneDown38() argument
2961 for (int y = 0; y < dst_height; ++y) { in ScalePlaneDown38()
[all …]
/external/libyuv/files/include/libyuv/
Dscale.h42 int dst_width, int dst_height,
50 uint8* dst, int dst_width, int dst_height, int dst_height_offset,
59 int dst_width, int dst_height,
Dgeneral.h37 int dst_width, int dst_height);
43 int dst_width, int dst_height);
/external/libyuv/files/unit_test/
Dscale_test.cc47 int dst_height = src_height >> 2; in TEST_F() local
50 int dst_height_uv = (dst_height + 1) >> 1; in TEST_F()
52 int dst_y_plane_size = (dst_width + (2 * b)) * (dst_height + (2 * b)); in TEST_F()
120 dst_width, dst_height, in TEST_F()
129 for (i = b; i < (dst_height + b); ++i) { in TEST_F()
/external/chromium/chrome/browser/ui/gtk/
Dnine_box.cc113 int dst_height = dst->allocation.height; in RenderToWidgetWithOpacity() local
120 int y2 = images_[6] ? dst_height - gdk_pixbuf_get_height(images_[6]) : y1; in RenderToWidgetWithOpacity()
159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity); in RenderToWidgetWithOpacity()
/external/webp/src/enc/
Dpicture.c280 int dst_width, int dst_height, int dst_stride, in RescalePlane() argument
283 const int fy_scale = (1 << RFIX) / dst_height; in RescalePlane()
285 ((int64_t)dst_height << RFIX) / (dst_width * src_height) : in RescalePlane()
286 ((int64_t)dst_height << RFIX) / (src_width * src_height); in RescalePlane()
298 y_accum -= dst_height; in RescalePlane()
/external/webp/src/dec/
Dwebpi.h37 int dst_width, dst_height; // destination dimensions member
Dio.c426 int dst_width, int dst_height, int dst_stride, in InitRescaler() argument
433 wrk->dst_height = dst_height; in InitRescaler()
445 ((int64_t)dst_height << RFIX) / (x_sub * src_height) : in InitRescaler()
446 ((int64_t)dst_height << RFIX) / (x_add * src_height); in InitRescaler()