Searched defs:src_stride_argb (Results 1 - 22 of 22) sorted by relevance

/external/libyuv/files/unit_test/
H A Drotate_argb_test.cc40 int src_stride_argb = src_width * kBpp; local
41 int src_argb_plane_size = src_stride_argb * abs(src_height);
56 RotatePlane(src_argb, src_stride_argb, dst_argb_c, dst_stride_argb,
61 RotatePlane(src_argb, src_stride_argb, dst_argb_opt, dst_stride_argb,
66 ARGBRotate(src_argb, src_stride_argb, dst_argb_c, dst_stride_argb,
71 ARGBRotate(src_argb, src_stride_argb, dst_argb_opt, dst_stride_argb,
H A Dscale_argb_test.cc42 int src_stride_argb = (b * 2 + Abs(src_width)) * 4; local
65 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
69 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
75 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
84 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
120 int src_stride_argb,
119 TileARGBScale(const uint8* src_argb, int src_stride_argb, int src_width, int src_height, uint8* dst_argb, int dst_stride_argb, int dst_width, int dst_height, FilterMode filtering) argument
162 int src_stride_argb = (b * 2 + Abs(src_width)) * 4; local
[all...]
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drotate_argb.cc161 int ARGBRotate(const uint8* src_argb, int src_stride_argb, argument
171 src_argb = src_argb + (height - 1) * src_stride_argb;
172 src_stride_argb = -src_stride_argb;
178 return ARGBCopy(src_argb, src_stride_argb,
182 ARGBRotate90(src_argb, src_stride_argb,
187 ARGBRotate270(src_argb, src_stride_argb,
192 ARGBRotate180(src_argb, src_stride_argb,
H A Dconvert_from_argb.cc25 int ARGBToI444(const uint8* src_argb, int src_stride_argb, argument
40 src_argb = src_argb + (height - 1) * src_stride_argb;
41 src_stride_argb = -src_stride_argb;
44 if (src_stride_argb == width * 4 &&
50 src_stride_argb = dst_stride_y = dst_stride_u = dst_stride_v = 0;
96 src_argb += src_stride_argb;
106 int ARGBToI422(const uint8* src_argb, int src_stride_argb, argument
112 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
124 src_argb = src_argb + (height - 1) * src_stride_argb;
186 ARGBToI411(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
258 ARGBToNV12(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
367 ARGBToNV21(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
476 ARGBToYUY2(const uint8* src_argb, int src_stride_argb, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
578 ARGBToUYVY(const uint8* src_argb, int src_stride_argb, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
680 ARGBToI400(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, int width, int height) argument
741 ARGBToRGBA(const uint8* src_argb, int src_stride_argb, uint8* dst_rgba, int dst_stride_rgba, int width, int height) argument
752 ARGBToRGB24(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb24, int dst_stride_rgb24, int width, int height) argument
800 ARGBToRAW(const uint8* src_argb, int src_stride_argb, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
856 ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) argument
909 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
965 ARGBToARGB1555(const uint8* src_argb, int src_stride_argb, uint8* dst_argb1555, int dst_stride_argb1555, int width, int height) argument
1021 ARGBToARGB4444(const uint8* src_argb, int src_stride_argb, uint8* dst_argb4444, int dst_stride_argb4444, int width, int height) argument
1077 ARGBToJ420(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
1151 ARGBToJ422(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
1229 ARGBToJ400(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, int width, int height) argument
[all...]
H A Dscale_argb.cc788 int ARGBScaleClip(const uint8* src_argb, int src_stride_argb, argument
802 ScaleARGB(src_argb, src_stride_argb, src_width, src_height,
810 int ARGBScale(const uint8* src_argb, int src_stride_argb, argument
820 ScaleARGB(src_argb, src_stride_argb, src_width, src_height,
H A Dconvert.cc479 int ARGBToI420(const uint8* src_argb, int src_stride_argb, argument
485 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
497 src_argb = src_argb + (height - 1) * src_stride_argb;
498 src_stride_argb = -src_stride_argb;
538 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width);
540 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width);
541 src_argb += src_stride_argb * 2;
767 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
881 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
[all...]
H A Dconvert_argb.cc29 int ARGBCopy(const uint8* src_argb, int src_stride_argb, argument
39 src_argb = src_argb + (height - 1) * src_stride_argb;
40 src_stride_argb = -src_stride_argb;
43 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
H A Dplanar_functions.cc615 int ARGBMirror(const uint8* src_argb, int src_stride_argb, argument
627 src_argb = src_argb + (height - 1) * src_stride_argb;
628 src_stride_argb = -src_stride_argb;
658 src_argb += src_stride_argb;
1423 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb, argument
1434 src_argb = src_argb + (height - 1) * src_stride_argb;
1435 src_stride_argb = -src_stride_argb;
1438 if (src_stride_argb
1479 ARGBUnattenuate(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1528 ARGBGrayTo(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1639 ARGBColorMatrix(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const int8* matrix_argb, int width, int height) argument
1824 ARGBComputeCumulativeSum(const uint8* src_argb, int src_stride_argb, int32* dst_cumsum, int dst_stride32_cumsum, int width, int height) argument
1854 ARGBBlur(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int32* dst_cumsum, int dst_stride32_cumsum, int width, int height, int radius) argument
1958 ARGBShade(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height, uint32 value) argument
2182 ARGBSobelize(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height, void (*SobelRow)(const uint8* src_sobelx, const uint8* src_sobely, uint8* dst, int width)) argument
2302 ARGBSobel(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
2329 ARGBSobelToPlane(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, int width, int height) argument
2357 ARGBSobelXY(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
2384 ARGBPolynomial(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const float* poly, int width, int height) argument
2430 ARGBLumaColorTable(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const uint8* luma, int width, int height) argument
2470 ARGBCopyAlpha(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
[all...]
H A Drow_neon.cc1461 void ARGBToUVRow_NEON(const uint8* src_argb, int src_stride_argb, argument
1499 "+r"(src_stride_argb), // %1
1510 void ARGBToUVJRow_NEON(const uint8* src_argb, int src_stride_argb, argument
1548 "+r"(src_stride_argb), // %1
H A Drow_neon64.cc1465 void ARGBToUVRow_NEON(const uint8* src_argb, int src_stride_argb, argument
1467 const uint8* src_argb_1 = src_argb + src_stride_argb;
1506 void ARGBToUVJRow_NEON(const uint8* src_argb, int src_stride_argb, argument
1508 const uint8* src_argb_1 = src_argb + src_stride_argb;
H A Drow_gcc.cc899 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb, argument
951 : "r"((intptr_t)(src_stride_argb)), // %4
967 void ARGBToUVRow_AVX2(const uint8* src_argb0, int src_stride_argb, argument
1015 : "r"((intptr_t)(src_stride_argb)), // %4
1027 void ARGBToUVJRow_AVX2(const uint8* src_argb0, int src_stride_argb, argument
1076 : "r"((intptr_t)(src_stride_argb)), // %4
1088 void ARGBToUVJRow_SSSE3(const uint8* src_argb0, int src_stride_argb, argument
1141 : "r"((intptr_t)(src_stride_argb)), // %4
/external/libyuv/files/source/
H A Drotate_argb.cc197 int src_stride_argb,
210 src_argb = src_argb + (height - 1) * src_stride_argb;
211 src_stride_argb = -src_stride_argb;
217 return ARGBCopy(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
220 ARGBRotate90(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width,
224 ARGBRotate270(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width,
228 ARGBRotate180(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width,
196 ARGBRotate(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height, enum RotationMode mode) argument
H A Dconvert_from_argb.cc26 int src_stride_argb,
45 src_argb = src_argb + (height - 1) * src_stride_argb;
46 src_stride_argb = -src_stride_argb;
49 if (src_stride_argb == width * 4 && dst_stride_y == width &&
53 src_stride_argb = dst_stride_y = dst_stride_u = dst_stride_v = 0;
123 src_argb += src_stride_argb;
134 int src_stride_argb,
144 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u,
154 src_argb = src_argb + (height - 1) * src_stride_argb;
25 ARGBToI444(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
133 ARGBToI422(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
246 ARGBToNV12(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
397 ARGBToNV21(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
548 ARGBToYUY2(const uint8* src_argb, int src_stride_argb, uint8* dst_yuy2, int dst_stride_yuy2, int width, int height) argument
692 ARGBToUYVY(const uint8* src_argb, int src_stride_argb, uint8* dst_uyvy, int dst_stride_uyvy, int width, int height) argument
836 ARGBToI400(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, int width, int height) argument
914 ARGBToRGBA(const uint8* src_argb, int src_stride_argb, uint8* dst_rgba, int dst_stride_rgba, int width, int height) argument
926 ARGBToRGB24(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb24, int dst_stride_rgb24, int width, int height) argument
984 ARGBToRAW(const uint8* src_argb, int src_stride_argb, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
1047 ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) argument
1115 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
1181 ARGBToARGB1555(const uint8* src_argb, int src_stride_argb, uint8* dst_argb1555, int dst_stride_argb1555, int width, int height) argument
1247 ARGBToARGB4444(const uint8* src_argb, int src_stride_argb, uint8* dst_argb4444, int dst_stride_argb4444, int width, int height) argument
1313 ARGBToJ420(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
1406 ARGBToJ422(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
1501 ARGBToJ400(const uint8* src_argb, int src_stride_argb, uint8* dst_yj, int dst_stride_yj, int width, int height) argument
[all...]
H A Dscale_argb.cc908 int src_stride_argb,
927 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, dst_argb,
936 int src_stride_argb,
948 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, dst_argb,
907 ARGBScaleClip(const uint8* src_argb, int src_stride_argb, int src_width, int src_height, uint8* dst_argb, int dst_stride_argb, int dst_width, int dst_height, int clip_x, int clip_y, int clip_width, int clip_height, enum FilterMode filtering) argument
935 ARGBScale(const uint8* src_argb, int src_stride_argb, int src_width, int src_height, uint8* dst_argb, int dst_stride_argb, int dst_width, int dst_height, enum FilterMode filtering) argument
H A Dconvert.cc523 int src_stride_argb,
533 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u,
543 src_argb = src_argb + (height - 1) * src_stride_argb;
544 src_stride_argb = -src_stride_argb;
616 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width);
618 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width);
619 src_argb += src_stride_argb * 2;
955 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u,
1085 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint
522 ARGBToI420(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, uint8* dst_u, int dst_stride_u, uint8* dst_v, int dst_stride_v, int width, int height) argument
[all...]
H A Dconvert_argb.cc30 int src_stride_argb,
41 src_argb = src_argb + (height - 1) * src_stride_argb;
42 src_stride_argb = -src_stride_argb;
45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width * 4,
29 ARGBCopy(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
H A Dplanar_functions.cc772 int src_stride_argb,
786 src_argb = src_argb + (height - 1) * src_stride_argb;
787 src_stride_argb = -src_stride_argb;
825 src_argb += src_stride_argb;
1689 int src_stride_argb,
1702 src_argb = src_argb + (height - 1) * src_stride_argb;
1703 src_stride_argb = -src_stride_argb;
1706 if (src_stride_argb
771 ARGBMirror(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1688 ARGBAttenuate(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1754 ARGBUnattenuate(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1805 ARGBGrayTo(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
1942 ARGBColorMatrix(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const int8* matrix_argb, int width, int height) argument
2147 ARGBComputeCumulativeSum(const uint8* src_argb, int src_stride_argb, int32* dst_cumsum, int dst_stride32_cumsum, int width, int height) argument
2181 ARGBBlur(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int32* dst_cumsum, int dst_stride32_cumsum, int width, int height, int radius) argument
2291 ARGBShade(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height, uint32 value) argument
2550 ARGBSobelize(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height, void (*SobelRow)(const uint8* src_sobelx, const uint8* src_sobely, uint8* dst, int width)) argument
2682 ARGBSobel(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
2720 ARGBSobelToPlane(const uint8* src_argb, int src_stride_argb, uint8* dst_y, int dst_stride_y, int width, int height) argument
2759 ARGBSobelXY(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
2797 ARGBPolynomial(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const float* poly, int width, int height) argument
2917 ARGBLumaColorTable(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, const uint8* luma, int width, int height) argument
2959 ARGBCopyAlpha(const uint8* src_argb, int src_stride_argb, uint8* dst_argb, int dst_stride_argb, int width, int height) argument
[all...]
H A Drow_neon.cc1390 int src_stride_argb,
1430 "+r"(src_stride_argb), // %1
1442 int src_stride_argb,
1482 "+r"(src_stride_argb), // %1
1389 ARGBToUVRow_NEON(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
1441 ARGBToUVJRow_NEON(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
H A Drow_neon64.cc1413 int src_stride_argb,
1417 const uint8* src_argb_1 = src_argb + src_stride_argb;
1457 int src_stride_argb,
1461 const uint8* src_argb_1 = src_argb + src_stride_argb;
1412 ARGBToUVRow_NEON(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
1456 ARGBToUVJRow_NEON(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
H A Drow_gcc.cc872 int src_stride_argb,
927 : "r"((intptr_t)(src_stride_argb)), // %4
943 int src_stride_argb,
994 : "r"((intptr_t)(src_stride_argb)), // %4
1007 int src_stride_argb,
1059 : "r"((intptr_t)(src_stride_argb)), // %4
1072 int src_stride_argb,
1128 : "r"((intptr_t)(src_stride_argb)), // %4
871 ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
942 ARGBToUVRow_AVX2(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
1006 ARGBToUVJRow_AVX2(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
1071 ARGBToUVJRow_SSSE3(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
H A Drow_msa.cc818 int src_stride_argb,
823 const uint8* src_argb0_next = src_argb0 + src_stride_argb;
817 ARGBToUVRow_MSA(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, uint8* dst_v, int width) argument
/external/libyuv/files/util/
H A Dyuvconvert.cc162 int src_stride_argb,
180 int r = libyuv::ARGBScaleClip(src_argb, src_stride_argb, src_width,
161 TileARGBScale(const uint8* src_argb, int src_stride_argb, int src_width, int src_height, uint8* dst_argb, int dst_stride_argb, int dst_width, int dst_height, libyuv::FilterMode filtering) argument

Completed in 348 milliseconds