/external/libaom/libaom/third_party/libyuv/source/ |
D | convert.cc | 658 int ABGRToI420(const uint8* src_abgr, int src_stride_abgr, in ABGRToI420() argument 666 void (*ABGRToYRow)(const uint8* src_abgr, uint8* dst_y, int pix) = in ABGRToI420() 668 if (!src_abgr || in ABGRToI420() 676 src_abgr = src_abgr + (height - 1) * src_stride_abgr; in ABGRToI420() 707 ABGRToUVRow(src_abgr, src_stride_abgr, dst_u, dst_v, width); in ABGRToI420() 708 ABGRToYRow(src_abgr, dst_y, width); in ABGRToI420() 709 ABGRToYRow(src_abgr + src_stride_abgr, dst_y + dst_stride_y, width); in ABGRToI420() 710 src_abgr += src_stride_abgr * 2; in ABGRToI420() 716 ABGRToUVRow(src_abgr, 0, dst_u, dst_v, width); in ABGRToI420() 717 ABGRToYRow(src_abgr, dst_y, width); in ABGRToI420()
|
D | row_neon64.cc | 1774 void ABGRToUVRow_NEON(const uint8* src_abgr, int src_stride_abgr, in ABGRToUVRow_NEON() argument 1776 const uint8* src_abgr_1 = src_abgr + src_stride_abgr; in ABGRToUVRow_NEON() 1802 : "+r"(src_abgr), // %0 in ABGRToUVRow_NEON() 2273 void ABGRToYRow_NEON(const uint8* src_abgr, uint8* dst_y, int pix) { in ABGRToYRow_NEON() argument 2291 : "+r"(src_abgr), // %0 in ABGRToYRow_NEON()
|
D | row_neon.cc | 1785 void ABGRToUVRow_NEON(const uint8* src_abgr, int src_stride_abgr, in ABGRToUVRow_NEON() argument 1823 : "+r"(src_abgr), // %0 in ABGRToUVRow_NEON() 2302 void ABGRToYRow_NEON(const uint8* src_abgr, uint8* dst_y, int pix) { in ABGRToYRow_NEON() argument 2321 : "+r"(src_abgr), // %0 in ABGRToYRow_NEON()
|
D | convert_argb.cc | 415 int ABGRToARGB(const uint8* src_abgr, int src_stride_abgr, in ABGRToARGB() argument 418 return ARGBShuffle(src_abgr, src_stride_abgr, in ABGRToARGB() 426 int ARGBToABGR(const uint8* src_abgr, int src_stride_abgr, in ARGBToABGR() argument 429 return ARGBShuffle(src_abgr, src_stride_abgr, in ARGBToABGR()
|
D | row_gcc.cc | 1224 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix) { in ABGRToYRow_SSSE3() argument 1249 : "+r"(src_abgr), // %0 in ABGRToYRow_SSSE3()
|
/external/libyuv/files/source/ |
D | convert.cc | 734 int ABGRToI420(const uint8* src_abgr, in ABGRToI420() argument 747 void (*ABGRToYRow)(const uint8* src_abgr, uint8* dst_y, int width) = in ABGRToI420() 749 if (!src_abgr || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ABGRToI420() 755 src_abgr = src_abgr + (height - 1) * src_stride_abgr; in ABGRToI420() 818 ABGRToUVRow(src_abgr, src_stride_abgr, dst_u, dst_v, width); in ABGRToI420() 819 ABGRToYRow(src_abgr, dst_y, width); in ABGRToI420() 820 ABGRToYRow(src_abgr + src_stride_abgr, dst_y + dst_stride_y, width); in ABGRToI420() 821 src_abgr += src_stride_abgr * 2; in ABGRToI420() 827 ABGRToUVRow(src_abgr, 0, dst_u, dst_v, width); in ABGRToI420() 828 ABGRToYRow(src_abgr, dst_y, width); in ABGRToI420()
|
D | row_neon64.cc | 1545 void ABGRToUVRow_NEON(const uint8* src_abgr, in ABGRToUVRow_NEON() argument 1550 const uint8* src_abgr_1 = src_abgr + src_stride_abgr; in ABGRToUVRow_NEON() 1576 : "+r"(src_abgr), // %0 in ABGRToUVRow_NEON() 2043 void ABGRToYRow_NEON(const uint8* src_abgr, uint8* dst_y, int width) { in ABGRToYRow_NEON() argument 2061 : "+r"(src_abgr), // %0 in ABGRToYRow_NEON()
|
D | row_neon.cc | 1543 void ABGRToUVRow_NEON(const uint8* src_abgr, in ABGRToUVRow_NEON() argument 1583 : "+r"(src_abgr), // %0 in ABGRToUVRow_NEON() 2070 void ABGRToYRow_NEON(const uint8* src_abgr, uint8* dst_y, int width) { in ABGRToYRow_NEON() argument 2088 : "+r"(src_abgr), // %0 in ABGRToYRow_NEON()
|
D | convert_argb.cc | 905 int ABGRToARGB(const uint8* src_abgr, in ABGRToARGB() argument 911 return ARGBShuffle(src_abgr, src_stride_abgr, dst_argb, dst_stride_argb, in ABGRToARGB() 917 int ARGBToABGR(const uint8* src_abgr, in ARGBToABGR() argument 923 return ARGBShuffle(src_abgr, src_stride_abgr, dst_argb, dst_stride_argb, in ARGBToABGR()
|
D | row_gcc.cc | 1298 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int width) { in ABGRToYRow_SSSE3() argument 1324 : "+r"(src_abgr), // %0 in ABGRToYRow_SSSE3()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 787 int ABGRToI420(const uint8_t* src_abgr, in ABGRToI420() argument 801 void (*ABGRToYRow)(const uint8_t* src_abgr, uint8_t* dst_y, int width) = in ABGRToI420() 803 if (!src_abgr || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ABGRToI420() 809 src_abgr = src_abgr + (height - 1) * src_stride_abgr; in ABGRToI420() 856 ABGRToUVRow(src_abgr, src_stride_abgr, dst_u, dst_v, width); in ABGRToI420() 857 ABGRToYRow(src_abgr, dst_y, width); in ABGRToI420() 858 ABGRToYRow(src_abgr + src_stride_abgr, dst_y + dst_stride_y, width); in ABGRToI420() 859 src_abgr += src_stride_abgr * 2; in ABGRToI420() 865 ABGRToUVRow(src_abgr, 0, dst_u, dst_v, width); in ABGRToI420() 866 ABGRToYRow(src_abgr, dst_y, width); in ABGRToI420()
|
D | convert_from_argb.cc | 1262 int ABGRToAR30(const uint8_t* src_abgr, in ABGRToAR30() argument 1269 void (*ABGRToAR30Row)(const uint8_t* src_abgr, uint8_t* dst_rgb, int width) = in ABGRToAR30() 1271 if (!src_abgr || !dst_ar30 || width <= 0 || height == 0) { in ABGRToAR30() 1276 src_abgr = src_abgr + (height - 1) * src_stride_abgr; in ABGRToAR30() 1302 ABGRToAR30Row(src_abgr, dst_ar30, width); in ABGRToAR30() 1303 src_abgr += src_stride_abgr; in ABGRToAR30()
|
D | row_neon64.cc | 1514 void ABGRToUVRow_NEON(const uint8_t* src_abgr, in ABGRToUVRow_NEON() argument 1519 const uint8_t* src_abgr_1 = src_abgr + src_stride_abgr; in ABGRToUVRow_NEON() 1541 : "+r"(src_abgr), // %0 in ABGRToUVRow_NEON() 1969 void ABGRToYRow_NEON(const uint8_t* src_abgr, uint8_t* dst_y, int width) { in ABGRToYRow_NEON() argument 1985 : "+r"(src_abgr), // %0 in ABGRToYRow_NEON()
|
D | row_neon.cc | 1461 void ABGRToUVRow_NEON(const uint8_t* src_abgr, in ABGRToUVRow_NEON() argument 1495 : "+r"(src_abgr), // %0 in ABGRToUVRow_NEON() 1938 void ABGRToYRow_NEON(const uint8_t* src_abgr, uint8_t* dst_y, int width) { in ABGRToYRow_NEON() argument 1954 : "+r"(src_abgr), // %0 in ABGRToYRow_NEON()
|
D | convert_argb.cc | 1120 int ABGRToARGB(const uint8_t* src_abgr, in ABGRToARGB() argument 1126 return ARGBShuffle(src_abgr, src_stride_abgr, dst_argb, dst_stride_argb, in ABGRToARGB() 1132 int ARGBToABGR(const uint8_t* src_abgr, in ARGBToABGR() argument 1138 return ARGBShuffle(src_abgr, src_stride_abgr, dst_argb, dst_stride_argb, in ARGBToABGR()
|
D | row_common.cc | 358 void ABGRToAR30Row_C(const uint8_t* src_abgr, uint8_t* dst_ar30, int width) { in ABGRToAR30Row_C() argument 361 uint32_t b0 = (src_abgr[0] >> 6) | ((uint32_t)(src_abgr[0]) << 2); in ABGRToAR30Row_C() 362 uint32_t g0 = (src_abgr[1] >> 6) | ((uint32_t)(src_abgr[1]) << 2); in ABGRToAR30Row_C() 363 uint32_t r0 = (src_abgr[2] >> 6) | ((uint32_t)(src_abgr[2]) << 2); in ABGRToAR30Row_C() 364 uint32_t a0 = (src_abgr[3] >> 6); in ABGRToAR30Row_C() 367 src_abgr += 4; in ABGRToAR30Row_C()
|
D | row_gcc.cc | 1616 void ABGRToYRow_SSSE3(const uint8_t* src_abgr, uint8_t* dst_y, int width) { in ABGRToYRow_SSSE3() argument 1642 : "+r"(src_abgr), // %0 in ABGRToYRow_SSSE3()
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 870 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int width); 906 void ABGRToUVRow_NEON(const uint8* src_abgr, 951 void ABGRToUVRow_MSA(const uint8* src_abgr, 982 void ABGRToYRow_NEON(const uint8* src_abgr, uint8* dst_y, int width); 990 void ABGRToYRow_MSA(const uint8* src_abgr, uint8* dst_y, int width); 1002 void ABGRToUVRow_DSPR2(const uint8* src_abgr, 1008 void ABGRToYRow_DSPR2(const uint8* src_abgr, uint8* dst_y, int width); 1023 void ABGRToYRow_C(const uint8* src_abgr, uint8* dst_y, int width); 1033 void ABGRToYRow_Any_SSSE3(const uint8* src_abgr, uint8* dst_y, int width); 1040 void ABGRToYRow_Any_NEON(const uint8* src_abgr, uint8* dst_y, int width); [all …]
|
/external/libaom/libaom/third_party/libyuv/include/libyuv/ |
D | row.h | 587 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix); 605 void ABGRToUVRow_NEON(const uint8* src_abgr, int src_stride_abgr, 620 void ABGRToYRow_NEON(const uint8* src_abgr, uint8* dst_y, int pix); 630 void ABGRToYRow_C(const uint8* src_abgr, uint8* dst_y, int pix); 640 void ABGRToYRow_Any_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix); 647 void ABGRToYRow_Any_NEON(const uint8* src_abgr, uint8* dst_y, int pix); 665 void ABGRToUVRow_SSSE3(const uint8* src_abgr, int src_stride_abgr, 675 void ABGRToUVRow_Any_SSSE3(const uint8* src_abgr, int src_stride_abgr, 691 void ABGRToUVRow_Any_NEON(const uint8* src_abgr, int src_stride_abgr, 713 void ABGRToUVRow_C(const uint8* src_abgr, int src_stride_abgr,
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | convert_from_argb.h | 64 int ABGRToAR30(const uint8_t* src_abgr,
|
D | convert.h | 247 int ABGRToI420(const uint8_t* src_abgr,
|
D | convert_argb.h | 508 int ABGRToARGB(const uint8_t* src_abgr,
|
D | row.h | 833 void ABGRToYRow_SSSE3(const uint8_t* src_abgr, uint8_t* dst_y, int width); 869 void ABGRToUVRow_NEON(const uint8_t* src_abgr, 945 void ABGRToYRow_NEON(const uint8_t* src_abgr, uint8_t* dst_y, int width); 1790 void ABGRToAR30Row_C(const uint8_t* src_abgr, uint8_t* dst_ar30, int width);
|