Home
last modified time | relevance | path

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

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc724 int RGBAToI420(const uint8* src_rgba, int src_stride_rgba, in RGBAToI420() argument
732 void (*RGBAToYRow)(const uint8* src_rgba, uint8* dst_y, int pix) = in RGBAToI420()
734 if (!src_rgba || in RGBAToI420()
742 src_rgba = src_rgba + (height - 1) * src_stride_rgba; in RGBAToI420()
773 RGBAToUVRow(src_rgba, src_stride_rgba, dst_u, dst_v, width); in RGBAToI420()
774 RGBAToYRow(src_rgba, dst_y, width); in RGBAToI420()
775 RGBAToYRow(src_rgba + src_stride_rgba, dst_y + dst_stride_y, width); in RGBAToI420()
776 src_rgba += src_stride_rgba * 2; in RGBAToI420()
782 RGBAToUVRow(src_rgba, 0, dst_u, dst_v, width); in RGBAToI420()
783 RGBAToYRow(src_rgba, dst_y, width); in RGBAToI420()
Drow_neon64.cc1815 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
1817 const uint8* src_rgba_1 = src_rgba + src_stride_rgba; in RGBAToUVRow_NEON()
1843 : "+r"(src_rgba), // %0 in RGBAToUVRow_NEON()
2301 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_NEON() argument
2319 : "+r"(src_rgba), // %0 in RGBAToYRow_NEON()
Drow_neon.cc1834 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba, in RGBAToUVRow_NEON() argument
1872 : "+r"(src_rgba), // %0 in RGBAToUVRow_NEON()
2329 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_NEON() argument
2348 : "+r"(src_rgba), // %0 in RGBAToYRow_NEON()
Dconvert_argb.cc437 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, in RGBAToARGB() argument
440 return ARGBShuffle(src_rgba, src_stride_rgba, in RGBAToARGB()
Drow_gcc.cc1258 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix) { in RGBAToYRow_SSSE3() argument
1283 : "+r"(src_rgba), // %0 in RGBAToYRow_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/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h587 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
606 void RGBAToUVRow_NEON(const uint8* src_rgba, int src_stride_rgba,
620 void RGBAToYRow_NEON(const uint8* src_rgba, uint8* dst_y, int pix);
630 void RGBAToYRow_C(const uint8* src_rgba, uint8* dst_y, int pix);
640 void RGBAToYRow_Any_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
647 void RGBAToYRow_Any_NEON(const uint8* src_rgba, uint8* dst_y, int pix);
666 void RGBAToUVRow_SSSE3(const uint8* src_rgba, int src_stride_rgba,
676 void RGBAToUVRow_Any_SSSE3(const uint8* src_rgba, int src_stride_rgba,
692 void RGBAToUVRow_Any_NEON(const uint8* src_rgba, int src_stride_rgba,
714 void RGBAToUVRow_C(const uint8* src_rgba, int src_stride_rgba,
/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);