/external/libaom/libaom/third_party/libyuv/source/ |
D | convert.cc | 1018 int RGB565ToI420(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToI420() argument 1025 void (*RGB565ToUVRow)(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToI420() 1027 void (*RGB565ToYRow)(const uint8* src_rgb565, uint8* dst_y, int pix) = in RGB565ToI420() 1037 if (!src_rgb565 || !dst_y || !dst_u || !dst_v || in RGB565ToI420() 1044 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToI420() 1106 RGB565ToUVRow(src_rgb565, src_stride_rgb565, dst_u, dst_v, width); in RGB565ToI420() 1107 RGB565ToYRow(src_rgb565, dst_y, width); in RGB565ToI420() 1108 RGB565ToYRow(src_rgb565 + src_stride_rgb565, dst_y + dst_stride_y, width); in RGB565ToI420() 1110 RGB565ToARGBRow(src_rgb565, row, width); in RGB565ToI420() 1111 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kRowSize, width); in RGB565ToI420() [all …]
|
D | row_common.cc | 103 void RGB565ToARGBRow_C(const uint8* src_rgb565, uint8* dst_argb, int width) { in RGB565ToARGBRow_C() argument 106 uint8 b = src_rgb565[0] & 0x1f; in RGB565ToARGBRow_C() 107 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToARGBRow_C() 108 uint8 r = src_rgb565[1] >> 3; in RGB565ToARGBRow_C() 114 src_rgb565 += 2; in RGB565ToARGBRow_C() 444 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int width) { in RGB565ToYRow_C() argument 447 uint8 b = src_rgb565[0] & 0x1f; in RGB565ToYRow_C() 448 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToYRow_C() 449 uint8 r = src_rgb565[1] >> 3; in RGB565ToYRow_C() 454 src_rgb565 += 2; in RGB565ToYRow_C() [all …]
|
D | convert_argb.cc | 548 int RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToARGB() argument 552 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int pix) = in RGB565ToARGB() 554 if (!src_rgb565 || !dst_argb || in RGB565ToARGB() 561 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToARGB() 597 RGB565ToARGBRow(src_rgb565, dst_argb, width); in RGB565ToARGB() 598 src_rgb565 += src_stride_rgb565; in RGB565ToARGB()
|
D | row_neon64.cc | 966 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix) { in RGB565ToARGBRow_NEON() argument 977 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON() 1939 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToUVRow_NEON() argument 1941 const uint8* src_rgb565_1 = src_rgb565 + src_stride_rgb565; in RGB565ToUVRow_NEON() 2000 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON() 2157 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument 2176 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
|
D | row_neon.cc | 982 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix) { in RGB565ToARGBRow_NEON() argument 994 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON() 1982 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToUVRow_NEON() argument 2040 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON() 2191 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument 2211 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
|
/external/libyuv/files/source/ |
D | convert.cc | 1196 int RGB565ToI420(const uint8* src_rgb565, in RGB565ToI420() argument 1208 void (*RGB565ToUVRow)(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToI420() 1211 void (*RGB565ToYRow)(const uint8* src_rgb565, uint8* dst_y, int width) = in RGB565ToI420() 1221 if (!src_rgb565 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in RGB565ToI420() 1227 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToI420() 1307 RGB565ToUVRow(src_rgb565, src_stride_rgb565, dst_u, dst_v, width); in RGB565ToI420() 1308 RGB565ToYRow(src_rgb565, dst_y, width); in RGB565ToI420() 1309 RGB565ToYRow(src_rgb565 + src_stride_rgb565, dst_y + dst_stride_y, width); in RGB565ToI420() 1311 RGB565ToARGBRow(src_rgb565, row, width); in RGB565ToI420() 1312 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kRowSize, width); in RGB565ToI420() [all …]
|
D | row_common.cc | 117 void RGB565ToARGBRow_C(const uint8* src_rgb565, uint8* dst_argb, int width) { in RGB565ToARGBRow_C() argument 120 uint8 b = src_rgb565[0] & 0x1f; in RGB565ToARGBRow_C() 121 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToARGBRow_C() 122 uint8 r = src_rgb565[1] >> 3; in RGB565ToARGBRow_C() 128 src_rgb565 += 2; in RGB565ToARGBRow_C() 441 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int width) { in RGB565ToYRow_C() argument 444 uint8 b = src_rgb565[0] & 0x1f; in RGB565ToYRow_C() 445 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToYRow_C() 446 uint8 r = src_rgb565[1] >> 3; in RGB565ToYRow_C() 451 src_rgb565 += 2; in RGB565ToYRow_C() [all …]
|
D | row_neon64.cc | 820 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int width) { in RGB565ToARGBRow_NEON() argument 831 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON() 1714 void RGB565ToUVRow_NEON(const uint8* src_rgb565, in RGB565ToUVRow_NEON() argument 1719 const uint8* src_rgb565_1 = src_rgb565 + src_stride_rgb565; in RGB565ToUVRow_NEON() 1778 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON() 1935 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int width) { in RGB565ToYRow_NEON() argument 1954 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
|
D | row_neon.cc | 822 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int width) { in RGB565ToARGBRow_NEON() argument 833 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON() 1748 void RGB565ToUVRow_NEON(const uint8* src_rgb565, in RGB565ToUVRow_NEON() argument 1808 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON() 1963 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int width) { in RGB565ToYRow_NEON() argument 1982 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
|
D | convert_argb.cc | 1075 int RGB565ToARGB(const uint8* src_rgb565, in RGB565ToARGB() argument 1082 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int width) = in RGB565ToARGB() 1084 if (!src_rgb565 || !dst_argb || width <= 0 || height == 0) { in RGB565ToARGB() 1090 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToARGB() 1141 RGB565ToARGBRow(src_rgb565, dst_argb, width); in RGB565ToARGB() 1142 src_rgb565 += src_stride_rgb565; in RGB565ToARGB()
|
D | row_dspr2.cc | 787 void RGB565ToARGBRow_DSPR2(const uint8* src_rgb565, in RGB565ToARGBRow_DSPR2() argument 812 [tmp_t3] "=&r"(tmp_t3), [src_rgb565] "+r"(src_rgb565), in RGB565ToARGBRow_DSPR2()
|
D | row_msa.cc | 1550 void RGB565ToARGBRow_MSA(const uint8* src_rgb565, uint8* dst_argb, int width) { in RGB565ToARGBRow_MSA() argument 1561 src0 = (v8u16)__msa_ld_h((v8u16*)src_rgb565, 0); in RGB565ToARGBRow_MSA() 1562 src1 = (v8u16)__msa_ld_h((v8u16*)src_rgb565, 16); in RGB565ToARGBRow_MSA() 1590 src_rgb565 += 32; in RGB565ToARGBRow_MSA() 1702 void RGB565ToYRow_MSA(const uint8* src_rgb565, uint8* dst_y, int width) { in RGB565ToYRow_MSA() argument 1716 src0 = (v8u16)__msa_ld_b((v8i16*)src_rgb565, 0); in RGB565ToYRow_MSA() 1717 src1 = (v8u16)__msa_ld_b((v8i16*)src_rgb565, 16); in RGB565ToYRow_MSA() 1760 src_rgb565 += 32; in RGB565ToYRow_MSA() 1928 void RGB565ToUVRow_MSA(const uint8* src_rgb565, in RGB565ToUVRow_MSA() argument 1934 const uint16* s = (const uint16*)src_rgb565; in RGB565ToUVRow_MSA() [all …]
|
D | row_win.cc | 433 __declspec(naked) void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, 489 __declspec(naked) void RGB565ToARGBRow_AVX2(const uint8* src_rgb565,
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 1222 int RGB565ToI420(const uint8_t* src_rgb565, in RGB565ToI420() argument 1234 void (*RGB565ToUVRow)(const uint8_t* src_rgb565, int src_stride_rgb565, in RGB565ToI420() 1237 void (*RGB565ToYRow)(const uint8_t* src_rgb565, uint8_t* dst_y, int width) = in RGB565ToI420() 1248 if (!src_rgb565 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in RGB565ToI420() 1254 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToI420() 1326 RGB565ToUVRow(src_rgb565, src_stride_rgb565, dst_u, dst_v, width); in RGB565ToI420() 1327 RGB565ToYRow(src_rgb565, dst_y, width); in RGB565ToI420() 1328 RGB565ToYRow(src_rgb565 + src_stride_rgb565, dst_y + dst_stride_y, width); in RGB565ToI420() 1330 RGB565ToARGBRow(src_rgb565, row, width); in RGB565ToI420() 1331 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kRowSize, width); in RGB565ToI420() [all …]
|
D | row_neon64.cc | 854 void RGB565ToARGBRow_NEON(const uint8_t* src_rgb565, in RGB565ToARGBRow_NEON() argument 865 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON() 1667 void RGB565ToUVRow_NEON(const uint8_t* src_rgb565, in RGB565ToUVRow_NEON() argument 1672 const uint8_t* src_rgb565_1 = src_rgb565 + src_stride_rgb565; in RGB565ToUVRow_NEON() 1726 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON() 1869 void RGB565ToYRow_NEON(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_NEON() argument 1886 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
|
D | row_neon.cc | 813 void RGB565ToARGBRow_NEON(const uint8_t* src_rgb565, in RGB565ToARGBRow_NEON() argument 824 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON() 1642 void RGB565ToUVRow_NEON(const uint8_t* src_rgb565, in RGB565ToUVRow_NEON() argument 1697 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON() 1839 void RGB565ToYRow_NEON(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_NEON() argument 1856 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
|
D | row_common.cc | 128 void RGB565ToARGBRow_C(const uint8_t* src_rgb565, in RGB565ToARGBRow_C() argument 133 uint8_t b = src_rgb565[0] & 0x1f; in RGB565ToARGBRow_C() 134 uint8_t g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToARGBRow_C() 135 uint8_t r = src_rgb565[1] >> 3; in RGB565ToARGBRow_C() 141 src_rgb565 += 2; in RGB565ToARGBRow_C() 521 void RGB565ToYRow_C(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_C() argument 524 uint8_t b = src_rgb565[0] & 0x1f; in RGB565ToYRow_C() 525 uint8_t g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToYRow_C() 526 uint8_t r = src_rgb565[1] >> 3; in RGB565ToYRow_C() 531 src_rgb565 += 2; in RGB565ToYRow_C() [all …]
|
D | convert_argb.cc | 1274 int RGB565ToARGB(const uint8_t* src_rgb565, in RGB565ToARGB() argument 1281 void (*RGB565ToARGBRow)(const uint8_t* src_rgb565, uint8_t* dst_argb, in RGB565ToARGB() 1283 if (!src_rgb565 || !dst_argb || width <= 0 || height == 0) { in RGB565ToARGB() 1289 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToARGB() 1332 RGB565ToARGBRow(src_rgb565, dst_argb, width); in RGB565ToARGB() 1333 src_rgb565 += src_stride_rgb565; in RGB565ToARGB()
|
D | row_msa.cc | 1556 void RGB565ToARGBRow_MSA(const uint8_t* src_rgb565, in RGB565ToARGBRow_MSA() argument 1569 src0 = (v8u16)__msa_ld_h((const v8u16*)src_rgb565, 0); in RGB565ToARGBRow_MSA() 1570 src1 = (v8u16)__msa_ld_h((const v8u16*)src_rgb565, 16); in RGB565ToARGBRow_MSA() 1598 src_rgb565 += 32; in RGB565ToARGBRow_MSA() 1714 void RGB565ToYRow_MSA(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_MSA() argument 1728 src0 = (v8u16)__msa_ld_b((const v8i16*)src_rgb565, 0); in RGB565ToYRow_MSA() 1729 src1 = (v8u16)__msa_ld_b((const v8i16*)src_rgb565, 16); in RGB565ToYRow_MSA() 1772 src_rgb565 += 32; in RGB565ToYRow_MSA() 1940 void RGB565ToUVRow_MSA(const uint8_t* src_rgb565, in RGB565ToUVRow_MSA() argument 1946 const uint16_t* s = (const uint16_t*)src_rgb565; in RGB565ToUVRow_MSA() [all …]
|
D | row_win.cc | 433 __declspec(naked) void RGB565ToARGBRow_SSE2(const uint8_t* src_rgb565, 489 __declspec(naked) void RGB565ToARGBRow_AVX2(const uint8_t* src_rgb565,
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 926 void RGB565ToUVRow_NEON(const uint8* src_rgb565, 971 void RGB565ToUVRow_MSA(const uint8* src_rgb565, 986 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int width); 994 void RGB565ToYRow_MSA(const uint8* src_rgb565, uint8* dst_y, int width); 1027 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int width); 1044 void RGB565ToYRow_Any_NEON(const uint8* src_rgb565, uint8* dst_y, int width); 1062 void RGB565ToYRow_Any_MSA(const uint8* src_rgb565, uint8* dst_y, int width); 1183 void RGB565ToUVRow_Any_NEON(const uint8* src_rgb565, 1228 void RGB565ToUVRow_Any_MSA(const uint8* src_rgb565, 1303 void RGB565ToUVRow_C(const uint8* src_rgb565, [all …]
|
/external/libaom/libaom/third_party/libyuv/include/libyuv/ |
D | row.h | 613 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, 624 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix); 634 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int pix); 651 void RGB565ToYRow_Any_NEON(const uint8* src_rgb565, uint8* dst_y, int pix); 699 void RGB565ToUVRow_Any_NEON(const uint8* src_rgb565, int src_stride_rgb565, 721 void RGB565ToUVRow_C(const uint8* src_rgb565, int src_stride_rgb565, 859 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, int pix); 864 void RGB565ToARGBRow_AVX2(const uint8* src_rgb565, uint8* dst_argb, int pix); 872 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix); 885 void RGB565ToARGBRow_Any_SSE2(const uint8* src_rgb565, uint8* dst_argb, [all …]
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 889 void RGB565ToUVRow_NEON(const uint8_t* src_rgb565, 934 void RGB565ToUVRow_MSA(const uint8_t* src_rgb565, 949 void RGB565ToYRow_NEON(const uint8_t* src_rgb565, uint8_t* dst_y, int width); 961 void RGB565ToYRow_MSA(const uint8_t* src_rgb565, uint8_t* dst_y, int width); 970 void RGB565ToYRow_C(const uint8_t* src_rgb565, uint8_t* dst_y, int width); 1224 void RGB565ToUVRow_C(const uint8_t* src_rgb565, 1605 void RGB565ToARGBRow_AVX2(const uint8_t* src_rgb565, 1623 void RGB565ToARGBRow_NEON(const uint8_t* src_rgb565, 1626 void RGB565ToARGBRow_MSA(const uint8_t* src_rgb565, 1644 void RGB565ToARGBRow_C(const uint8_t* src_rgb565, uint8_t* dst_argb, int width);
|
D | convert.h | 299 int RGB565ToI420(const uint8_t* src_rgb565,
|
D | convert_argb.h | 547 int RGB565ToARGB(const uint8_t* src_rgb565,
|