Lines Matching refs:dst_height
1020 int dst_height, in ScalePlaneVertical() argument
1040 assert(dst_height > 0); in ScalePlaneVertical()
1084 for (j = 0; j < dst_height; ++j) { in ScalePlaneVertical()
1100 int dst_height, in ScalePlaneVertical_16() argument
1120 assert(dst_height > 0); in ScalePlaneVertical_16()
1164 for (j = 0; j < dst_height; ++j) { in ScalePlaneVertical_16()
1183 int dst_height, in ScaleFilterReduce() argument
1193 if (dst_width * 2 >= src_width && dst_height * 2 >= src_height) { in ScaleFilterReduce()
1202 if (dst_height == src_height || dst_height * 3 == src_height) { in ScaleFilterReduce()
1239 int dst_height, in ScaleSlope() argument
1252 assert(dst_height > 0); in ScaleSlope()
1257 if (dst_height == 1 && src_height >= 32768) { in ScaleSlope()
1258 dst_height = src_height; in ScaleSlope()
1263 *dy = FixedDiv(src_height, dst_height); in ScaleSlope()
1275 if (dst_height <= src_height) { in ScaleSlope()
1276 *dy = FixedDiv(src_height, dst_height); in ScaleSlope()
1278 } else if (dst_height > 1) { in ScaleSlope()
1279 *dy = FixedDiv1(src_height, dst_height); in ScaleSlope()
1291 *dy = FixedDiv(src_height, dst_height); in ScaleSlope()
1296 *dy = FixedDiv(src_height, dst_height); in ScaleSlope()