Searched refs:src_stride_rgba (Results 1 - 8 of 8) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert.cc879 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, argument
885 void (*RGBAToUVRow)(const uint8* src_rgba0, int src_stride_rgba,
897 src_rgba = src_rgba + (height - 1) * src_stride_rgba;
898 src_stride_rgba = -src_stride_rgba;
907 if (IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16)) {
931 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width);
933 RGBAToYRow(src_rgba + src_stride_rgba, dst_y + dst_stride_y, width);
934 src_rgba += src_stride_rgba * 2;
H A Dconvert_argb.cc415 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, argument
418 return ARGBShuffle(src_rgba, src_stride_rgba,
H A Drow_neon.cc1898 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, argument
1937 "+r"(src_stride_rgba), // %1
H A Drow_neon64.cc2015 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, argument
2054 "+r"(src_stride_rgba), // %1
H A Drow_posix.cc1921 void RGBAToUVRow_SSSE3(const uint8* src_rgba0, int src_stride_rgba, argument
1976 : "r"((intptr_t)(src_stride_rgba))
1987 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_rgba0, int src_stride_rgba, argument
2046 : "r"((intptr_t)(src_stride_rgba)) // %4
/external/libyuv/files/source/
H A Dconvert_argb.cc331 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, argument
341 src_rgba = src_rgba + (height - 1) * src_stride_rgba;
342 src_stride_rgba = -src_stride_rgba;
349 IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16) &&
357 src_rgba += src_stride_rgba;
H A Dconvert.cc1100 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, argument
1113 src_rgba = src_rgba + (height - 1) * src_stride_rgba;
1114 src_stride_rgba = -src_stride_rgba;
1117 void (*RGBAToUVRow)(const uint8* src_rgba0, int src_stride_rgba,
1131 if (IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16)) {
1142 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width);
1144 RGBAToYRow(src_rgba + src_stride_rgba, dst_y + dst_stride_y, width);
1145 src_rgba += src_stride_rgba * 2;
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Drow.h589 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba,
649 void RGBAToUVRow_SSSE3(const uint8* src_rgba, int src_stride_rgba,
659 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_rgba, int src_stride_rgba,
669 void RGBAToUVRow_Any_SSSE3(const uint8* src_rgba, int src_stride_rgba,
685 void RGBAToUVRow_Any_NEON(const uint8* src_rgba, int src_stride_rgba,
707 void RGBAToUVRow_C(const uint8* src_rgba, int src_stride_rgba,

Completed in 58 milliseconds