/external/libyuv/files/source/ |
D | row_common.cc | 38 void ABGRToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int width) { in ABGRToARGBRow_C() argument 41 uint8 r = src_abgr[0]; in ABGRToARGBRow_C() 42 uint8 g = src_abgr[1]; in ABGRToARGBRow_C() 43 uint8 b = src_abgr[2]; in ABGRToARGBRow_C() 44 uint8 a = src_abgr[3]; in ABGRToARGBRow_C() 50 src_abgr += 4; in ABGRToARGBRow_C() 54 void RGBAToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int width) { in RGBAToARGBRow_C() argument 57 uint8 a = src_abgr[0]; in RGBAToARGBRow_C() 58 uint8 b = src_abgr[1]; in RGBAToARGBRow_C() 59 uint8 g = src_abgr[2]; in RGBAToARGBRow_C() [all …]
|
D | row_posix.cc | 151 void ABGRToARGBRow_SSSE3(const uint8* src_abgr, uint8* dst_argb, int pix) { in ABGRToARGBRow_SSSE3() argument 164 : "+r"(src_abgr), // %0 in ABGRToARGBRow_SSSE3() 1074 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix) { in ABGRToYRow_SSSE3() argument 1099 : "+r"(src_abgr), // %0 in ABGRToYRow_SSSE3() 1111 void ABGRToYRow_Unaligned_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix) { in ABGRToYRow_Unaligned_SSSE3() argument 1136 : "+r"(src_abgr), // %0 in ABGRToYRow_Unaligned_SSSE3()
|
D | convert_argb.cc | 297 int ABGRToARGB(const uint8* src_abgr, int src_stride_abgr, in ABGRToARGB() argument 300 if (!src_abgr || !dst_argb || in ABGRToARGB() 307 src_abgr = src_abgr + (height - 1) * src_stride_abgr; in ABGRToARGB() 310 void (*ABGRToARGBRow)(const uint8* src_abgr, uint8* dst_argb, int pix) = in ABGRToARGB() 315 IS_ALIGNED(src_abgr, 16) && IS_ALIGNED(src_stride_abgr, 16) && in ABGRToARGB() 322 ABGRToARGBRow(src_abgr, dst_argb, width); in ABGRToARGB() 323 src_abgr += src_stride_abgr; in ABGRToARGB()
|
D | row_neon.cc | 562 void ABGRToARGBRow_NEON(const uint8* src_abgr, uint8* dst_argb, int pix) { in ABGRToARGBRow_NEON() argument 571 : "+r"(src_abgr), // %0 in ABGRToARGBRow_NEON()
|
D | convert.cc | 1042 int ABGRToI420(const uint8* src_abgr, int src_stride_abgr, in ABGRToI420() argument 1047 if (!src_abgr || in ABGRToI420() 1055 src_abgr = src_abgr + (height - 1) * src_stride_abgr; in ABGRToI420() 1058 void (*ABGRToYRow)(const uint8* src_abgr, uint8* dst_y, int pix); in ABGRToI420() 1073 if (IS_ALIGNED(src_abgr, 16) && IS_ALIGNED(src_stride_abgr, 16)) { in ABGRToI420() 1084 ABGRToUVRow(src_abgr, src_stride_abgr, dst_u, dst_v, width); in ABGRToI420() 1085 ABGRToYRow(src_abgr, dst_y, width); in ABGRToI420() 1086 ABGRToYRow(src_abgr + src_stride_abgr, dst_y + dst_stride_y, width); in ABGRToI420() 1087 src_abgr += src_stride_abgr * 2; in ABGRToI420() 1093 ABGRToUVRow(src_abgr, 0, dst_u, dst_v, width); in ABGRToI420() [all …]
|
D | row_win.cc | 175 void ABGRToARGBRow_SSSE3(const uint8* src_abgr, uint8* dst_argb, int pix) { in ABGRToARGBRow_SSSE3() argument
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | row.h | 127 void ABGRToARGBRow_SSSE3(const uint8* src_abgr, uint8* dst_argb, int pix); 132 void ABGRToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int pix);
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 289 void ABGRToARGBRow_SSSE3(const uint8* src_abgr, uint8* dst_argb, int pix); 298 void ABGRToARGBRow_NEON(const uint8* src_abgr, uint8* dst_argb, int pix); 304 void ABGRToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int pix);
|