/external/libyuv/files/source/ |
D | convert.cc | 1341 int ARGB1555ToI420(const uint8* src_argb1555, in ARGB1555ToI420() argument 1353 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() 1356 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int width) = in ARGB1555ToI420() 1366 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || width <= 0 || in ARGB1555ToI420() 1373 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420() 1446 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420() 1447 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420() 1448 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420() 1451 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420() 1452 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555, row + kRowSize, in ARGB1555ToI420() [all …]
|
D | row_common.cc | 132 void ARGB1555ToARGBRow_C(const uint8* src_argb1555, in ARGB1555ToARGBRow_C() argument 137 uint8 b = src_argb1555[0] & 0x1f; in ARGB1555ToARGBRow_C() 138 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToARGBRow_C() 139 uint8 r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToARGBRow_C() 140 uint8 a = src_argb1555[1] >> 7; in ARGB1555ToARGBRow_C() 146 src_argb1555 += 2; in ARGB1555ToARGBRow_C() 456 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_C() argument 459 uint8 b = src_argb1555[0] & 0x1f; in ARGB1555ToYRow_C() 460 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToYRow_C() 461 uint8 r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToYRow_C() [all …]
|
D | row_neon64.cc | 876 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, in ARGB1555ToARGBRow_NEON() argument 889 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON() 1791 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, in ARGB1555ToUVRow_NEON() argument 1796 const uint8* src_argb1555_1 = src_argb1555 + src_stride_argb1555; in ARGB1555ToUVRow_NEON() 1850 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON() 1963 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_NEON() argument 1982 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
|
D | row_neon.cc | 868 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, in ARGB1555ToARGBRow_NEON() argument 881 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON() 1820 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, in ARGB1555ToUVRow_NEON() argument 1880 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON() 1990 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_NEON() argument 2009 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
|
D | convert_argb.cc | 1150 int ARGB1555ToARGB(const uint8* src_argb1555, in ARGB1555ToARGB() argument 1157 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGB() 1159 if (!src_argb1555 || !dst_argb || width <= 0 || height == 0) { in ARGB1555ToARGB() 1165 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB() 1216 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB() 1217 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
|
D | row_dspr2.cc | 818 void ARGB1555ToARGBRow_DSPR2(const uint8* src_argb1555, in ARGB1555ToARGBRow_DSPR2() argument 841 [tmp_t3] "=&r"(tmp_t3), [src_argb1555] "+r"(src_argb1555), in ARGB1555ToARGBRow_DSPR2()
|
D | row_msa.cc | 1500 void ARGB1555ToARGBRow_MSA(const uint8* src_argb1555, in ARGB1555ToARGBRow_MSA() argument 1511 src0 = (v8u16)__msa_ld_h((v8u16*)src_argb1555, 0); in ARGB1555ToARGBRow_MSA() 1512 src1 = (v8u16)__msa_ld_h((v8u16*)src_argb1555, 16); in ARGB1555ToARGBRow_MSA() 1545 src_argb1555 += 32; in ARGB1555ToARGBRow_MSA() 1645 void ARGB1555ToYRow_MSA(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_MSA() argument 1657 src0 = (v8u16)__msa_ld_b((v8i16*)src_argb1555, 0); in ARGB1555ToYRow_MSA() 1658 src1 = (v8u16)__msa_ld_b((v8i16*)src_argb1555, 16); in ARGB1555ToYRow_MSA() 1697 src_argb1555 += 32; in ARGB1555ToYRow_MSA() 1847 void ARGB1555ToUVRow_MSA(const uint8* src_argb1555, in ARGB1555ToUVRow_MSA() argument 1853 const uint16* s = (const uint16*)src_argb1555; in ARGB1555ToUVRow_MSA() [all …]
|
D | row_win.cc | 540 __declspec(naked) void ARGB1555ToARGBRow_AVX2(const uint8* src_argb1555, 630 __declspec(naked) void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555,
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 1103 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() argument 1110 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() 1112 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int width) = in ARGB1555ToI420() 1122 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || in ARGB1555ToI420() 1129 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420() 1191 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420() 1192 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420() 1193 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420() 1196 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420() 1197 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555, row + kRowSize, in ARGB1555ToI420() [all …]
|
D | row_common.cc | 132 void ARGB1555ToARGBRow_C(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_C() argument 136 uint8 b = src_argb1555[0] & 0x1f; in ARGB1555ToARGBRow_C() 137 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToARGBRow_C() 138 uint8 r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToARGBRow_C() 139 uint8 a = src_argb1555[1] >> 7; in ARGB1555ToARGBRow_C() 145 src_argb1555 += 2; in ARGB1555ToARGBRow_C() 451 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_C() argument 454 uint8 b = src_argb1555[0] & 0x1f; in ARGB1555ToYRow_C() 455 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToYRow_C() 456 uint8 r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToYRow_C() [all …]
|
D | row_neon64.cc | 906 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument 918 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON() 1820 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument 1822 const uint8* src_argb1555_1 = src_argb1555 + src_stride_argb1555; in ARGB1555ToUVRow_NEON() 1876 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON() 1986 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_NEON() argument 2005 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
|
D | row_neon.cc | 905 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument 917 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON() 1868 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument 1925 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON() 2032 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_NEON() argument 2051 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
|
D | convert_argb.cc | 1042 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToARGB() argument 1046 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGB() 1048 if (!src_argb1555 || !dst_argb || in ARGB1555ToARGB() 1055 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB() 1091 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB() 1092 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
|
D | row_win.cc | 571 void ARGB1555ToARGBRow_AVX2(const uint8* src_argb1555, uint8* dst_argb, 661 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb,
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 931 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, 976 void ARGB1555ToUVRow_MSA(const uint8* src_argb1555, 987 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width); 995 void ARGB1555ToYRow_MSA(const uint8* src_argb1555, uint8* dst_y, int width); 1028 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width); 1045 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, 1063 void ARGB1555ToYRow_Any_MSA(const uint8* src_argb1555, uint8* dst_y, int width); 1188 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555, 1233 void ARGB1555ToUVRow_Any_MSA(const uint8* src_argb1555, 1308 void ARGB1555ToUVRow_C(const uint8* src_argb1555, [all …]
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 681 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, 691 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width); 701 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width); 718 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, uint8* dst_y, 771 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555, 793 void ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555, 939 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, 944 void ARGB1555ToARGBRow_AVX2(const uint8* src_argb1555, uint8* dst_argb, 953 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, 970 void ARGB1555ToARGBRow_Any_SSE2(const uint8* src_argb1555, uint8* dst_argb, [all …]
|