Home
last modified time | relevance | path

Searched refs:src_stride_rgba (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/libyuv/source/
Dconvert.cc879 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, in RGBAToI420() argument
885 void (*RGBAToUVRow)(const uint8* src_rgba0, int src_stride_rgba, in RGBAToI420()
897 src_rgba = src_rgba + (height - 1) * src_stride_rgba; in RGBAToI420()
898 src_stride_rgba = -src_stride_rgba; in RGBAToI420()
907 if (IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16)) { in RGBAToI420()
931 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width); in RGBAToI420()
933 RGBAToYRow(src_rgba + src_stride_rgba, dst_y + dst_stride_y, width); in RGBAToI420()
934 src_rgba += src_stride_rgba * 2; in RGBAToI420()
Dconvert_argb.cc415 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, in RGBAToARGB() argument
418 return ARGBShuffle(src_rgba, src_stride_rgba, in RGBAToARGB()
Drow_neon.cc1899 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
1938 "+r"(src_stride_rgba), // %1 in RGBAToUVRow_NEON()
Drow_posix.cc1921 void RGBAToUVRow_SSSE3(const uint8* src_rgba0, int src_stride_rgba, in RGBAToUVRow_SSSE3() argument
1976 : "r"((intptr_t)(src_stride_rgba)) in RGBAToUVRow_SSSE3()
1987 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_rgba0, int src_stride_rgba, in RGBAToUVRow_Unaligned_SSSE3() argument
2046 : "r"((intptr_t)(src_stride_rgba)) // %4 in RGBAToUVRow_Unaligned_SSSE3()
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
Dconvert.cc881 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, in RGBAToI420() argument
887 void (*RGBAToUVRow)(const uint8* src_rgba0, int src_stride_rgba, in RGBAToI420()
899 src_rgba = src_rgba + (height - 1) * src_stride_rgba; in RGBAToI420()
900 src_stride_rgba = -src_stride_rgba; in RGBAToI420()
909 if (IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16)) { in RGBAToI420()
933 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width); in RGBAToI420()
935 RGBAToYRow(src_rgba + src_stride_rgba, dst_y + dst_stride_y, width); in RGBAToI420()
936 src_rgba += src_stride_rgba * 2; in RGBAToI420()
Dconvert_argb.cc415 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, in RGBAToARGB() argument
418 return ARGBShuffle(src_rgba, src_stride_rgba, in RGBAToARGB()
Drow_neon.cc1898 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
1937 "+r"(src_stride_rgba), // %1 in RGBAToUVRow_NEON()
Drow_neon64.cc2016 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
2055 "+r"(src_stride_rgba), // %1 in RGBAToUVRow_NEON()
Drow_posix.cc1921 void RGBAToUVRow_SSSE3(const uint8* src_rgba0, int src_stride_rgba, in RGBAToUVRow_SSSE3() argument
1976 : "r"((intptr_t)(src_stride_rgba)) in RGBAToUVRow_SSSE3()
1987 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_rgba0, int src_stride_rgba, in RGBAToUVRow_Unaligned_SSSE3() argument
2046 : "r"((intptr_t)(src_stride_rgba)) // %4 in RGBAToUVRow_Unaligned_SSSE3()
/external/libyuv/files/source/
Dconvert_argb.cc331 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, in RGBAToARGB() argument
341 src_rgba = src_rgba + (height - 1) * src_stride_rgba; in RGBAToARGB()
342 src_stride_rgba = -src_stride_rgba; in RGBAToARGB()
349 IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16) && in RGBAToARGB()
357 src_rgba += src_stride_rgba; in RGBAToARGB()
Dconvert.cc1100 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, in RGBAToI420() argument
1113 src_rgba = src_rgba + (height - 1) * src_stride_rgba; in RGBAToI420()
1114 src_stride_rgba = -src_stride_rgba; in RGBAToI420()
1117 void (*RGBAToUVRow)(const uint8* src_rgba0, int src_stride_rgba, in RGBAToI420()
1131 if (IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16)) { in RGBAToI420()
1142 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width); in RGBAToI420()
1144 RGBAToYRow(src_rgba + src_stride_rgba, dst_y + dst_stride_y, width); in RGBAToI420()
1145 src_rgba += src_stride_rgba * 2; in RGBAToI420()
/external/chromium_org/third_party/libyuv/include/libyuv/
Drow.h585 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba,
645 void RGBAToUVRow_SSSE3(const uint8* src_rgba, int src_stride_rgba,
655 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_rgba, int src_stride_rgba,
665 void RGBAToUVRow_Any_SSSE3(const uint8* src_rgba, int src_stride_rgba,
681 void RGBAToUVRow_Any_NEON(const uint8* src_rgba, int src_stride_rgba,
703 void RGBAToUVRow_C(const uint8* src_rgba, int src_stride_rgba,
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
Drow.h677 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba,
737 void RGBAToUVRow_SSSE3(const uint8* src_rgba, int src_stride_rgba,
747 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_rgba, int src_stride_rgba,
757 void RGBAToUVRow_Any_SSSE3(const uint8* src_rgba, int src_stride_rgba,
773 void RGBAToUVRow_Any_NEON(const uint8* src_rgba, int src_stride_rgba,
795 void RGBAToUVRow_C(const uint8* src_rgba, int src_stride_rgba,