Lines Matching refs:width

31              int width, int height) {
33 width <= 0 || height == 0) {
44 width * 4, height);
54 int width, int height) {
60 int width) = I444ToARGBRow_C;
63 width <= 0 || height == 0) {
73 if (src_stride_y == width &&
74 src_stride_u == width &&
75 src_stride_v == width &&
76 dst_stride_argb == width * 4) {
77 width *= height;
82 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
84 if (IS_ALIGNED(width, 8)) {
92 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
94 if (IS_ALIGNED(width, 8)) {
101 I444ToARGBRow(src_y, src_u, src_v, dst_argb, width);
116 int width, int height) {
122 int width) = I422ToARGBRow_C;
125 width <= 0 || height == 0) {
135 if (src_stride_y == width &&
136 src_stride_u * 2 == width &&
137 src_stride_v * 2 == width &&
138 dst_stride_argb == width * 4) {
139 width *= height;
144 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
146 if (IS_ALIGNED(width, 8)) {
155 if (TestCpuFlag(kCpuHasAVX2) && width >= 16) {
157 if (IS_ALIGNED(width, 16)) {
163 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
165 if (IS_ALIGNED(width, 8)) {
171 if (TestCpuFlag(kCpuHasMIPS_DSPR2) && IS_ALIGNED(width, 4) &&
181 I422ToARGBRow(src_y, src_u, src_v, dst_argb, width);
196 int width, int height) {
202 int width) = I411ToARGBRow_C;
205 width <= 0 || height == 0) {
215 if (src_stride_y == width &&
216 src_stride_u * 4 == width &&
217 src_stride_v * 4 == width &&
218 dst_stride_argb == width * 4) {
219 width *= height;
224 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
226 if (IS_ALIGNED(width, 8)) {
234 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
236 if (IS_ALIGNED(width, 8)) {
243 I411ToARGBRow(src_y, src_u, src_v, dst_argb, width);
256 int width, int height) {
260 int width) = YToARGBRow_C;
262 width <= 0 || height == 0) {
272 if (src_stride_y == width &&
273 dst_stride_argb == width * 4) {
274 width *= height;
279 if (TestCpuFlag(kCpuHasSSE2) && width >= 8 &&
282 if (IS_ALIGNED(width, 8)) {
287 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
289 if (IS_ALIGNED(width, 8)) {
296 YToARGBRow(src_y, dst_argb, width);
307 int width, int height) {
312 width <= 0 || height == 0) {
322 if (src_stride_y == width &&
323 dst_stride_argb == width * 4) {
324 width *= height;
329 if (TestCpuFlag(kCpuHasSSE2) && width >= 8) {
331 if (IS_ALIGNED(width, 8)) {
339 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
341 if (IS_ALIGNED(width, 8)) {
347 I400ToARGBRow(src_y, dst_argb, width);
373 int width, int height) {
377 width, height);
384 int width, int height) {
388 width, height);
395 int width, int height) {
399 width, height);
406 int width, int height) {
410 width, height);
417 int width, int height) {
421 width, height);
428 int width, int height) {
433 width <= 0 || height == 0) {
443 if (src_stride_rgb24 == width * 3 &&
444 dst_stride_argb == width * 4) {
445 width *= height;
450 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16 &&
453 if (IS_ALIGNED(width, 16)) {
458 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
460 if (IS_ALIGNED(width, 8)) {
467 RGB24ToARGBRow(src_rgb24, dst_argb, width);
478 int width, int height) {
483 width <= 0 || height == 0) {
493 if (src_stride_raw == width * 3 &&
494 dst_stride_argb == width * 4) {
495 width *= height;
500 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16 &&
503 if (IS_ALIGNED(width, 16)) {
508 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
510 if (IS_ALIGNED(width, 8)) {
517 RAWToARGBRow(src_raw, dst_argb, width);
528 int width, int height) {
533 width <= 0 || height == 0) {
543 if (src_stride_rgb565 == width * 2 &&
544 dst_stride_argb == width * 4) {
545 width *= height;
550 if (TestCpuFlag(kCpuHasSSE2) && width >= 8 &&
553 if (IS_ALIGNED(width, 8)) {
558 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
560 if (IS_ALIGNED(width, 8)) {
567 RGB565ToARGBRow(src_rgb565, dst_argb, width);
578 int width, int height) {
583 width <= 0 || height == 0) {
593 if (src_stride_argb1555 == width * 2 &&
594 dst_stride_argb == width * 4) {
595 width *= height;
600 if (TestCpuFlag(kCpuHasSSE2) && width >= 8 &&
603 if (IS_ALIGNED(width, 8)) {
608 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
610 if (IS_ALIGNED(width, 8)) {
617 ARGB1555ToARGBRow(src_argb1555, dst_argb, width);
628 int width, int height) {
633 width <= 0 || height == 0) {
643 if (src_stride_argb4444 == width * 2 &&
644 dst_stride_argb == width * 4) {
645 width *= height;
650 if (TestCpuFlag(kCpuHasSSE2) && width >= 8 &&
653 if (IS_ALIGNED(width, 8)) {
658 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
660 if (IS_ALIGNED(width, 8)) {
667 ARGB4444ToARGBRow(src_argb4444, dst_argb, width);
679 int width, int height) {
684 int width) = NV12ToARGBRow_C;
686 width <= 0 || height == 0) {
696 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
698 if (IS_ALIGNED(width, 8)) {
706 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
708 if (IS_ALIGNED(width, 8)) {
715 NV12ToARGBRow(src_y, src_uv, dst_argb, width);
730 int width, int height) {
735 int width) = NV21ToARGBRow_C;
737 width <= 0 || height == 0) {
747 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
749 if (IS_ALIGNED(width, 8)) {
758 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
760 if (IS_ALIGNED(width, 8)) {
767 NV21ToARGBRow(src_y, src_uv, dst_argb, width);
781 int width, int height) {
786 int width) = NV12ToARGBRow_C;
788 width <= 0 || height == 0) {
798 if (TestCpuFlag(kCpuHasSSSE3) && width >= 8) {
800 if (IS_ALIGNED(width, 8)) {
808 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
810 if (IS_ALIGNED(width, 8)) {
817 NV12ToARGBRow(src_m420, src_m420 + src_stride_m420 * 2, dst_argb, width);
819 dst_argb + dst_stride_argb, width);
824 NV12ToARGBRow(src_m420, src_m420 + src_stride_m420 * 2, dst_argb, width);
833 int width, int height) {
838 width <= 0 || height == 0) {
848 if (src_stride_yuy2 == width * 2 &&
849 dst_stride_argb == width * 4) {
850 width *= height;
856 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
858 if (IS_ALIGNED(width, 16)) {
867 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
869 if (IS_ALIGNED(width, 8)) {
875 YUY2ToARGBRow(src_yuy2, dst_argb, width);
886 int width, int height) {
891 width <= 0 || height == 0) {
901 if (src_stride_uyvy == width * 2 &&
902 dst_stride_argb == width * 4) {
903 width *= height;
909 if (TestCpuFlag(kCpuHasSSSE3) && width >= 16) {
911 if (IS_ALIGNED(width, 16)) {
920 if (TestCpuFlag(kCpuHasNEON) && width >= 8) {
922 if (IS_ALIGNED(width, 8)) {
928 UYVYToARGBRow(src_uyvy, dst_argb, width);