Home | History | Annotate | Download | only in util

Lines Matching defs:dst_height

32 int dst_width = 0, dst_height = 0;      // new width and height
98 dst_height = atoi(argv[++c]); // NOLINT
147 if (dst_width == 0 || dst_height == 0) {
150 dst_height = rec_height;
153 dst_height = Abs(image_height);
168 int dst_height,
170 for (int y = 0; y < dst_height; y += kTileY) {
177 if (y + clip_height > dst_height) {
178 clip_height = dst_height - y;
182 dst_width, dst_height, x, y, clip_width,
233 const int dst_size = dst_width * dst_height * 4; // ARGB scaled
234 const int y_size = dst_width * dst_height;
235 const int uv_size = ((dst_width + 1) / 2) * ((dst_height + 1) / 2);
263 dst_height);
295 int half_dst_height = (dst_height + 1) / 2;
300 ch_rec + dst_width * dst_height, half_dst_width,
301 ch_rec + dst_width * dst_height + half_dst_width * half_dst_height,
302 half_dst_width, dst_width, dst_height,
306 ch_dst, dst_width * 4, dst_width, dst_height,
321 int half_height = (dst_height + 1) / 2;
324 ch_rec + dst_width * dst_height, half_width,
325 ch_rec + dst_width * dst_height + half_width * half_height,
326 half_width, dst_width, dst_height);