/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/ |
D | convert.cc | 950 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() argument 957 void (*RGB24ToUVRow)(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() 959 void (*RGB24ToYRow)(const uint8* src_rgb24, uint8* dst_y, int pix) = in RGB24ToI420() 969 if (!src_rgb24 || !dst_y || !dst_u || !dst_v || in RGB24ToI420() 976 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToI420() 1033 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width); in RGB24ToI420() 1034 RGB24ToYRow(src_rgb24, dst_y, width); in RGB24ToI420() 1035 RGB24ToYRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width); in RGB24ToI420() 1037 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420() 1038 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kRowSize, width); in RGB24ToI420() [all …]
|
D | convert_argb.cc | 426 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToARGB() argument 432 if (!src_rgb24 || !dst_argb || in RGB24ToARGB() 439 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToARGB() 467 RGB24ToARGBRow(src_rgb24, dst_argb, width); in RGB24ToARGB() 468 src_rgb24 += src_stride_rgb24; in RGB24ToARGB()
|
D | row_neon.cc | 953 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument 964 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON() 1947 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToUVRow_NEON() argument 1985 : "+r"(src_rgb24), // %0 in RGB24ToUVRow_NEON() 2420 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { in RGB24ToYRow_NEON() argument 2439 : "+r"(src_rgb24), // %0 in RGB24ToYRow_NEON()
|
D | row_neon64.cc | 1006 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument 1017 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON() 2067 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToUVRow_NEON() argument 2105 : "+r"(src_rgb24), // %0 in RGB24ToUVRow_NEON() 2562 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { in RGB24ToYRow_NEON() argument 2581 : "+r"(src_rgb24), // %0 in RGB24ToYRow_NEON()
|
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_posix.cc | 304 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument 334 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_SSSE3()
|
D | row_win.cc | 368 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
|
/external/chromium_org/third_party/libyuv/source/ |
D | convert.cc | 948 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() argument 955 void (*RGB24ToUVRow)(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() 957 void (*RGB24ToYRow)(const uint8* src_rgb24, uint8* dst_y, int pix) = in RGB24ToI420() 970 if (!src_rgb24 || !dst_y || !dst_u || !dst_v || in RGB24ToI420() 977 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToI420() 1027 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width); in RGB24ToI420() 1028 RGB24ToYRow(src_rgb24, dst_y, width); in RGB24ToI420() 1029 RGB24ToYRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width); in RGB24ToI420() 1031 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420() 1032 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kRowSize, width); in RGB24ToI420() [all …]
|
D | convert_argb.cc | 426 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToARGB() argument 432 if (!src_rgb24 || !dst_argb || in RGB24ToARGB() 439 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToARGB() 467 RGB24ToARGBRow(src_rgb24, dst_argb, width); in RGB24ToARGB() 468 src_rgb24 += src_stride_rgb24; in RGB24ToARGB()
|
D | row_neon.cc | 954 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument 965 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON() 1948 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToUVRow_NEON() argument 1986 : "+r"(src_rgb24), // %0 in RGB24ToUVRow_NEON() 2421 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { in RGB24ToYRow_NEON() argument 2440 : "+r"(src_rgb24), // %0 in RGB24ToYRow_NEON()
|
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_posix.cc | 304 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument 334 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_SSSE3()
|
D | row_win.cc | 369 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/chromium_org/third_party/libyuv/include/libyuv/ |
D | row.h | 560 void RGB24ToYRow_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 567 void RGB24ToYRow_Unaligned_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 587 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, 600 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix); 610 void RGB24ToYRow_C(const uint8* src_rgb24, uint8* dst_y, int pix); 620 void RGB24ToYRow_Any_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 627 void RGB24ToYRow_Any_NEON(const uint8* src_rgb24, uint8* dst_y, int pix); 683 void RGB24ToUVRow_Any_NEON(const uint8* src_rgb24, int src_stride_rgb24, 705 void RGB24ToUVRow_C(const uint8* src_rgb24, int src_stride_rgb24, 843 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix); [all …]
|
/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/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 652 void RGB24ToYRow_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 659 void RGB24ToYRow_Unaligned_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 679 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, 692 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix); 702 void RGB24ToYRow_C(const uint8* src_rgb24, uint8* dst_y, int pix); 712 void RGB24ToYRow_Any_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); 719 void RGB24ToYRow_Any_NEON(const uint8* src_rgb24, uint8* dst_y, int pix); 775 void RGB24ToUVRow_Any_NEON(const uint8* src_rgb24, int src_stride_rgb24, 797 void RGB24ToUVRow_C(const uint8* src_rgb24, int src_stride_rgb24, 935 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix); [all …]
|