/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 724 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()
|
D | row_neon64.cc | 1815 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()
|
D | row_neon.cc | 1834 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()
|
D | convert_argb.cc | 437 int RGBAToARGB(const uint8* src_rgba, int src_stride_rgba, in RGBAToARGB() argument 440 return ARGBShuffle(src_rgba, src_stride_rgba, in RGBAToARGB()
|
D | row_gcc.cc | 1258 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/ |
D | convert_argb.cc | 331 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()
|
D | row_neon.cc | 581 void RGBAToARGBRow_NEON(const uint8* src_rgba, uint8* dst_argb, int pix) { in RGBAToARGBRow_NEON() argument 590 : "+r"(src_rgba), // %0 in RGBAToARGBRow_NEON()
|
D | convert.cc | 1100 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 …]
|
D | row_posix.cc | 198 void RGBAToARGBRow_SSSE3(const uint8* src_rgba, uint8* dst_argb, int pix) { in RGBAToARGBRow_SSSE3() argument 211 : "+r"(src_rgba), // %0 in RGBAToARGBRow_SSSE3()
|
D | row_win.cc | 196 void RGBAToARGBRow_SSSE3(const uint8* src_rgba, uint8* dst_argb, int pix) { in RGBAToARGBRow_SSSE3() argument
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 587 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/ |
D | row.h | 290 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);
|