Lines Matching refs:height
33 int width, int height) {
35 width <= 0 || height == 0) {
38 // Negative height means invert the image.
39 if (height < 0) {
40 height = -height;
41 src_argb = src_argb + (height - 1) * src_stride_argb;
46 width * 4, height);
56 int width, int height) {
59 width <= 0 || height == 0) {
62 // Negative height means invert the image.
63 if (height < 0) {
64 height = -height;
65 dst_argb = dst_argb + (height - 1) * dst_stride_argb;
85 for (int y = 0; y < height; ++y) {
101 int width, int height) {
104 width <= 0 || height == 0) {
107 // Negative height means invert the image.
108 if (height < 0) {
109 height = -height;
110 dst_argb = dst_argb + (height - 1) * dst_stride_argb;
137 for (int y = 0; y < height; ++y) {
153 int width, int height) {
156 width <= 0 || height == 0) {
159 // Negative height means invert the image.
160 if (height < 0) {
161 height = -height;
162 dst_argb = dst_argb + (height - 1) * dst_stride_argb;
182 for (int y = 0; y < height; ++y) {
197 int width, int height) {
199 width <= 0 || height == 0) {
202 // Negative height means invert the image.
203 if (height < 0) {
204 height = -height;
205 dst_argb = dst_argb + (height - 1) * dst_stride_argb;
219 for (int y = 0; y < height; ++y) {
231 int width, int height) {
233 width <= 0 || height == 0) {
236 // Negative height means invert the image.
237 if (height < 0) {
238 height = -height;
239 src_y = src_y + (height - 1) * src_stride_y;
253 for (int y = 0; y < height; ++y) {
265 int width, int height) {
267 width <= 0 || height == 0) {
270 // Negative height means invert the image.
271 if (height < 0) {
272 height = -height;
273 src_bgra = src_bgra + (height - 1) * src_stride_bgra;
287 for (int y = 0; y < height; ++y) {
299 int width, int height) {
301 width <= 0 || height == 0) {
304 // Negative height means invert the image.
305 if (height < 0) {
306 height = -height;
307 src_abgr = src_abgr + (height - 1) * src_stride_abgr;
321 for (int y = 0; y < height; ++y) {
333 int width, int height) {
335 width <= 0 || height == 0) {
338 // Negative height means invert the image.
339 if (height < 0) {
340 height = -height;
341 src_rgba = src_rgba + (height - 1) * src_stride_rgba;
355 for (int y = 0; y < height; ++y) {
367 int width, int height) {
369 width <= 0 || height == 0) {
372 // Negative height means invert the image.
373 if (height < 0) {
374 height = -height;
375 src_raw = src_raw + (height - 1) * src_stride_raw;
388 for (int y = 0; y < height; ++y) {
400 int width, int height) {
402 width <= 0 || height == 0) {
405 // Negative height means invert the image.
406 if (height < 0) {
407 height = -height;
408 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24;
421 for (int y = 0; y < height; ++y) {
433 int width, int height) {
435 width <= 0 || height == 0) {
438 // Negative height means invert the image.
439 if (height < 0) {
440 height = -height;
441 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
454 for (int y = 0; y < height; ++y) {
466 int width, int height) {
468 width <= 0 || height == 0) {
471 // Negative height means invert the image.
472 if (height < 0) {
473 height = -height;
474 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
487 for (int y = 0; y < height; ++y) {
499 int width, int height) {
501 width <= 0 || height == 0) {
504 // Negative height means invert the image.
505 if (height < 0) {
506 height = -height;
507 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444;
520 for (int y = 0; y < height; ++y) {
533 int width, int height) {
535 width <= 0 || height == 0) {
538 // Negative height means invert the image.
539 if (height < 0) {
540 height = -height;
541 dst_argb = dst_argb + (height - 1) * dst_stride_argb;
568 for (int y = 0; y < height; ++y) {
584 int width, int height) {
586 width <= 0 || height == 0) {
589 // Negative height means invert the image.
590 if (height < 0) {
591 height = -height;
592 dst_argb = dst_argb + (height - 1) * dst_stride_argb;
619 for (int y = 0; y < height; ++y) {
634 int width, int height) {
636 width <= 0 || height == 0) {
639 // Negative height means invert the image.
640 if (height < 0) {
641 height = -height;
642 dst_argb = dst_argb + (height - 1) * dst_stride_argb;
661 for (int y = 0; y < height - 1; y += 2) {
668 if (height & 1) {
678 int width, int height) {
680 width <= 0 || height == 0) {
683 // Negative height means invert the image.
684 if (height < 0) {
685 height = -height;
686 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
751 for (int y = 0; y < height; ++y) {
765 int width, int height) {
767 width <= 0 || height == 0) {
770 // Negative height means invert the image.
771 if (height < 0) {
772 height = -height;
773 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
822 for (int y = 0; y < height; ++y) {