Home
last modified time | relevance | path

Searched refs:src_rgba (Results 1 – 17 of 17) sorted by relevance

/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
889 void (*RGBAToYRow)(const uint8* src_rgba, uint8* dst_y, int pix) = in RGBAToI420()
891 if (!src_rgba || in RGBAToI420()
899 src_rgba = src_rgba + (height - 1) * 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()
934 RGBAToYRow(src_rgba, dst_y, 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()
942 RGBAToUVRow(src_rgba, 0, dst_u, dst_v, width); in RGBAToI420()
[all …]
Drow_neon.cc1898 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
1936 : "+r"(src_rgba), // %0 in RGBAToUVRow_NEON()
2393 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_NEON() argument
2412 : "+r"(src_rgba), // %0 in RGBAToYRow_NEON()
Drow_neon64.cc2016 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
2054 : "+r"(src_rgba), // %0 in RGBAToUVRow_NEON()
2533 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_NEON() argument
2552 : "+r"(src_rgba), // %0 in RGBAToYRow_NEON()
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_posix.cc1711 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_SSSE3() argument
1736 : "+r"(src_rgba), // %0 in RGBAToYRow_SSSE3()
1748 void RGBAToYRow_Unaligned_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_Unaligned_SSSE3() argument
1773 : "+r"(src_rgba), // %0 in RGBAToYRow_Unaligned_SSSE3()
/external/chromium_org/third_party/libyuv/source/
Dconvert.cc879 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, in RGBAToI420() argument
887 void (*RGBAToYRow)(const uint8* src_rgba, uint8* dst_y, int pix) = in RGBAToI420()
889 if (!src_rgba || in RGBAToI420()
897 src_rgba = src_rgba + (height - 1) * 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()
932 RGBAToYRow(src_rgba, dst_y, 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()
940 RGBAToUVRow(src_rgba, 0, dst_u, dst_v, width); in RGBAToI420()
[all …]
Drow_neon.cc1899 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
1937 : "+r"(src_rgba), // %0 in RGBAToUVRow_NEON()
2394 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_NEON() argument
2413 : "+r"(src_rgba), // %0 in RGBAToYRow_NEON()
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_posix.cc1711 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_SSSE3() argument
1736 : "+r"(src_rgba), // %0 in RGBAToYRow_SSSE3()
1748 void RGBAToYRow_Unaligned_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_Unaligned_SSSE3() argument
1773 : "+r"(src_rgba), // %0 in RGBAToYRow_Unaligned_SSSE3()
/external/libyuv/files/source/
Dconvert_argb.cc331 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, in RGBAToARGB() argument
334 if (!src_rgba || !dst_argb || in RGBAToARGB()
341 src_rgba = src_rgba + (height - 1) * src_stride_rgba; in RGBAToARGB()
344 void (*RGBAToARGBRow)(const uint8* src_rgba, uint8* dst_argb, int pix) = in RGBAToARGB()
349 IS_ALIGNED(src_rgba, 16) && IS_ALIGNED(src_stride_rgba, 16) && in RGBAToARGB()
356 RGBAToARGBRow(src_rgba, dst_argb, width); in RGBAToARGB()
357 src_rgba += src_stride_rgba; in RGBAToARGB()
Drow_neon.cc581 void RGBAToARGBRow_NEON(const uint8* src_rgba, uint8* dst_argb, int pix) { in RGBAToARGBRow_NEON() argument
590 : "+r"(src_rgba), // %0 in RGBAToARGBRow_NEON()
Dconvert.cc1100 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, in RGBAToI420() argument
1105 if (!src_rgba || in RGBAToI420()
1113 src_rgba = src_rgba + (height - 1) * src_stride_rgba; in RGBAToI420()
1116 void (*RGBAToYRow)(const uint8* src_rgba, uint8* dst_y, int pix); 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()
1143 RGBAToYRow(src_rgba, dst_y, 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()
1151 RGBAToUVRow(src_rgba, 0, dst_u, dst_v, width); in RGBAToI420()
[all …]
Drow_posix.cc198 void RGBAToARGBRow_SSSE3(const uint8* src_rgba, uint8* dst_argb, int pix) { in RGBAToARGBRow_SSSE3() argument
211 : "+r"(src_rgba), // %0 in RGBAToARGBRow_SSSE3()
Drow_win.cc196 void RGBAToARGBRow_SSSE3(const uint8* src_rgba, uint8* dst_argb, int pix) { in RGBAToARGBRow_SSSE3() argument
/external/chromium_org/third_party/libyuv/include/libyuv/
Drow.h559 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
566 void RGBAToYRow_Unaligned_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
585 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba,
599 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix);
609 void RGBAToYRow_C(const uint8* src_rgba, uint8* dst_y, int pix);
619 void RGBAToYRow_Any_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
626 void RGBAToYRow_Any_NEON(const uint8* src_rgba, uint8* dst_y, int pix);
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,
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
Drow.h651 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
658 void RGBAToYRow_Unaligned_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
677 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba,
691 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix);
701 void RGBAToYRow_C(const uint8* src_rgba, uint8* dst_y, int pix);
711 void RGBAToYRow_Any_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
718 void RGBAToYRow_Any_NEON(const uint8* src_rgba, uint8* dst_y, int pix);
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,
[all …]
/external/libyuv/files/include/libyuv/
Drow.h290 void RGBAToARGBRow_SSSE3(const uint8* src_rgba, uint8* dst_argb, int pix);
299 void RGBAToARGBRow_NEON(const uint8* src_rgba, uint8* dst_argb, int pix);
305 void RGBAToARGBRow_C(const uint8* src_rgba, uint8* dst_argb, int pix);