/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 790 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() argument 797 void (*RGB24ToUVRow)(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() 799 void (*RGB24ToYRow)(const uint8* src_rgb24, uint8* dst_y, int pix) = in RGB24ToI420() 809 if (!src_rgb24 || !dst_y || !dst_u || !dst_v || in RGB24ToI420() 816 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToI420() 870 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width); in RGB24ToI420() 871 RGB24ToYRow(src_rgb24, dst_y, width); in RGB24ToI420() 872 RGB24ToYRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width); in RGB24ToI420() 874 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420() 875 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kRowSize, width); in RGB24ToI420() [all …]
|
D | row_neon64.cc | 911 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument 921 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON() 1856 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToUVRow_NEON() argument 1858 const uint8* src_rgb24_1 = src_rgb24 + src_stride_rgb24; in RGB24ToUVRow_NEON() 1884 : "+r"(src_rgb24), // %0 in RGB24ToUVRow_NEON() 2329 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { in RGB24ToYRow_NEON() argument 2347 : "+r"(src_rgb24), // %0 in RGB24ToYRow_NEON()
|
D | row_neon.cc | 931 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument 942 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON() 1883 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToUVRow_NEON() argument 1921 : "+r"(src_rgb24), // %0 in RGB24ToUVRow_NEON() 2356 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { in RGB24ToYRow_NEON() argument 2375 : "+r"(src_rgb24), // %0 in RGB24ToYRow_NEON()
|
D | convert_argb.cc | 448 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToARGB() argument 454 if (!src_rgb24 || !dst_argb || in RGB24ToARGB() 461 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToARGB() 489 RGB24ToARGBRow(src_rgb24, dst_argb, width); in RGB24ToARGB() 490 src_rgb24 += src_stride_rgb24; in RGB24ToARGB()
|
D | row_common.cc | 73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C() argument 76 uint8 b = src_rgb24[0]; in RGB24ToARGBRow_C() 77 uint8 g = src_rgb24[1]; in RGB24ToARGBRow_C() 78 uint8 r = src_rgb24[2]; in RGB24ToARGBRow_C() 84 src_rgb24 += 3; in RGB24ToARGBRow_C()
|
D | row_gcc.cc | 268 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument 298 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_SSSE3()
|
D | row_win.cc | 385 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
|
/external/libyuv/files/source/ |
D | row_neon.cc | 600 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument 609 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON()
|
D | convert_argb.cc | 398 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToARGB() argument 401 if (!src_rgb24 || !dst_argb || in RGB24ToARGB() 408 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToARGB() 411 void (*RGB24ToARGBRow)(const uint8* src_rgb24, uint8* dst_argb, int pix) = in RGB24ToARGB() 422 RGB24ToARGBRow(src_rgb24, dst_argb, width); in RGB24ToARGB() 423 src_rgb24 += src_stride_rgb24; in RGB24ToARGB()
|
D | convert.cc | 1158 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() argument 1165 } else if (!src_rgb24 || in RGB24ToI420() 1173 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToI420() 1182 TestReadSafe(src_rgb24, src_stride_rgb24, width, height, 3, 48)) { in RGB24ToI420() 1210 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420() 1211 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kMaxStride, width); in RGB24ToI420() 1215 src_rgb24 += src_stride_rgb24 * 2; in RGB24ToI420() 1221 RGB24ToARGBRow_C(src_rgb24, row, width); in RGB24ToI420()
|
D | row_common.cc | 70 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C() argument 72 uint8 b = src_rgb24[0]; in RGB24ToARGBRow_C() 73 uint8 g = src_rgb24[1]; in RGB24ToARGBRow_C() 74 uint8 r = src_rgb24[2]; in RGB24ToARGBRow_C() 80 src_rgb24 += 3; in RGB24ToARGBRow_C()
|
D | row_posix.cc | 246 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument 276 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_SSSE3()
|
D | row_win.cc | 238 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 291 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix); 292 void RAWToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix); 300 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix); 301 void RAWToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix); 306 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix); 307 void RAWToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix);
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 588 void RGB24ToYRow_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 608 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, 621 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix); 631 void RGB24ToYRow_C(const uint8* src_rgb24, uint8* dst_y, int pix); 641 void RGB24ToYRow_Any_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 648 void RGB24ToYRow_Any_NEON(const uint8* src_rgb24, uint8* dst_y, int pix); 694 void RGB24ToUVRow_Any_NEON(const uint8* src_rgb24, int src_stride_rgb24, 716 void RGB24ToUVRow_C(const uint8* src_rgb24, int src_stride_rgb24, 856 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix); 869 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix); [all …]
|