/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 1140 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() argument 1147 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() 1149 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int pix) = in ARGB1555ToI420() 1159 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || in ARGB1555ToI420() 1166 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420() 1228 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420() 1229 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420() 1230 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420() 1233 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420() 1234 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555, row + kRowSize, in ARGB1555ToI420() [all …]
|
D | row_common.cc | 118 void ARGB1555ToARGBRow_C(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_C() argument 122 uint8 b = src_argb1555[0] & 0x1f; in ARGB1555ToARGBRow_C() 123 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToARGBRow_C() 124 uint8 r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToARGBRow_C() 125 uint8 a = src_argb1555[1] >> 7; in ARGB1555ToARGBRow_C() 131 src_argb1555 += 2; in ARGB1555ToARGBRow_C() 459 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_C() argument 462 uint8 b = src_argb1555[0] & 0x1f; in ARGB1555ToYRow_C() 463 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToYRow_C() 464 uint8 r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToYRow_C() [all …]
|
D | convert_argb.cc | 606 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToARGB() argument 610 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGB() 612 if (!src_argb1555 || !dst_argb || in ARGB1555ToARGB() 619 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB() 655 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB() 656 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
|
D | row_neon64.cc | 1024 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument 1036 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON() 2015 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument 2017 const uint8* src_argb1555_1 = src_argb1555 + src_stride_argb1555; in ARGB1555ToUVRow_NEON() 2071 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON() 2187 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { in ARGB1555ToYRow_NEON() argument 2206 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
|
D | row_neon.cc | 1029 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument 1042 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON() 2052 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument 2110 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON() 2219 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { in ARGB1555ToYRow_NEON() argument 2239 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
|
D | row_win.cc | 576 void ARGB1555ToARGBRow_AVX2(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_AVX2() argument 666 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_SSE2() argument
|
/external/libyuv/files/source/ |
D | convert_argb.cc | 464 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToARGB() argument 467 if (!src_argb1555 || !dst_argb || in ARGB1555ToARGB() 474 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB() 477 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGB() 488 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB() 489 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
|
D | convert.cc | 1371 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() argument 1378 } else if (!src_argb1555 || in ARGB1555ToI420() 1386 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420() 1395 TestReadSafe(src_argb1555, src_stride_argb1555, width, height, 2, 16)) { in ARGB1555ToI420() 1423 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420() 1424 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555, in ARGB1555ToI420() 1429 src_argb1555 += src_stride_argb1555 * 2; in ARGB1555ToI420() 1435 ARGB1555ToARGBRow_C(src_argb1555, row, width); in ARGB1555ToI420()
|
D | row_win.cc | 375 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_SSE2() argument
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 614 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, 624 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix); 634 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int pix); 651 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, uint8* dst_y, int pix); 700 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555, 722 void ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555, 859 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, 864 void ARGB1555ToARGBRow_AVX2(const uint8* src_argb1555, uint8* dst_argb, 872 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, 886 void ARGB1555ToARGBRow_Any_SSE2(const uint8* src_argb1555, uint8* dst_argb, [all …]
|