Home
last modified time | relevance | path

Searched refs:src_argb1555 (Results 1 – 25 of 29) sorted by relevance

12

/external/libaom/libaom/third_party/libyuv/source/
Dconvert.cc1140 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 …]
Drow_common.cc118 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 …]
Dconvert_argb.cc606 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()
Drow_neon64.cc1024 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()
Drow_neon.cc1029 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()
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc1360 int ARGB1555ToI420(const uint8_t* src_argb1555, in ARGB1555ToI420() argument
1372 void (*ARGB1555ToUVRow)(const uint8_t* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420()
1375 void (*ARGB1555ToYRow)(const uint8_t* src_argb1555, uint8_t* dst_y, in ARGB1555ToI420()
1386 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || width <= 0 || in ARGB1555ToI420()
1393 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420()
1466 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420()
1467 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420()
1468 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420()
1471 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420()
1472 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555, row + kRowSize, in ARGB1555ToI420()
[all …]
Drow_neon64.cc910 void ARGB1555ToARGBRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_NEON() argument
922 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
1738 void ARGB1555ToUVRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToUVRow_NEON() argument
1743 const uint8_t* src_argb1555_1 = src_argb1555 + src_stride_argb1555; in ARGB1555ToUVRow_NEON()
1791 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
1894 void ARGB1555ToYRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToYRow_NEON() argument
1913 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_neon.cc859 void ARGB1555ToARGBRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_NEON() argument
870 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
1708 void ARGB1555ToUVRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToUVRow_NEON() argument
1763 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
1863 void ARGB1555ToYRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToYRow_NEON() argument
1882 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_common.cc145 void ARGB1555ToARGBRow_C(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_C() argument
150 uint8_t b = src_argb1555[0] & 0x1f; in ARGB1555ToARGBRow_C()
151 uint8_t g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToARGBRow_C()
152 uint8_t r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToARGBRow_C()
153 uint8_t a = src_argb1555[1] >> 7; in ARGB1555ToARGBRow_C()
159 src_argb1555 += 2; in ARGB1555ToARGBRow_C()
536 void ARGB1555ToYRow_C(const uint8_t* src_argb1555, uint8_t* dst_y, int width) { in ARGB1555ToYRow_C() argument
539 uint8_t b = src_argb1555[0] & 0x1f; in ARGB1555ToYRow_C()
540 uint8_t g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToYRow_C()
541 uint8_t r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToYRow_C()
[all …]
Dconvert_argb.cc1341 int ARGB1555ToARGB(const uint8_t* src_argb1555, in ARGB1555ToARGB() argument
1348 void (*ARGB1555ToARGBRow)(const uint8_t* src_argb1555, uint8_t* dst_argb, in ARGB1555ToARGB()
1350 if (!src_argb1555 || !dst_argb || width <= 0 || height == 0) { in ARGB1555ToARGB()
1356 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB()
1399 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB()
1400 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
/external/libyuv/files/source/
Drow_neon64.cc910 void ARGB1555ToARGBRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_NEON() argument
922 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
1738 void ARGB1555ToUVRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToUVRow_NEON() argument
1743 const uint8_t* src_argb1555_1 = src_argb1555 + src_stride_argb1555; in ARGB1555ToUVRow_NEON()
1791 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
1894 void ARGB1555ToYRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToYRow_NEON() argument
1913 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_neon.cc859 void ARGB1555ToARGBRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_NEON() argument
870 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
1708 void ARGB1555ToUVRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToUVRow_NEON() argument
1763 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
1863 void ARGB1555ToYRow_NEON(const uint8_t* src_argb1555, in ARGB1555ToYRow_NEON() argument
1882 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_common.cc145 void ARGB1555ToARGBRow_C(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_C() argument
150 uint8_t b = src_argb1555[0] & 0x1f; in ARGB1555ToARGBRow_C()
151 uint8_t g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToARGBRow_C()
152 uint8_t r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToARGBRow_C()
153 uint8_t a = src_argb1555[1] >> 7; in ARGB1555ToARGBRow_C()
159 src_argb1555 += 2; in ARGB1555ToARGBRow_C()
536 void ARGB1555ToYRow_C(const uint8_t* src_argb1555, uint8_t* dst_y, int width) { in ARGB1555ToYRow_C() argument
539 uint8_t b = src_argb1555[0] & 0x1f; in ARGB1555ToYRow_C()
540 uint8_t g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToYRow_C()
541 uint8_t r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToYRow_C()
[all …]
Dconvert.cc2039 int ARGB1555ToI420(const uint8_t* src_argb1555, in ARGB1555ToI420() argument
2052 void (*ARGB1555ToUVRow)(const uint8_t* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420()
2055 void (*ARGB1555ToYRow)(const uint8_t* src_argb1555, uint8_t* dst_y, in ARGB1555ToI420()
2066 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || width <= 0 || in ARGB1555ToI420()
2073 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420()
2159 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420()
2160 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420()
2161 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420()
2164 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420()
2165 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555, row + kRowSize, in ARGB1555ToI420()
[all …]
Drow_mmi.cc209 void ARGB1555ToARGBRow_MMI(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_MMI() argument
259 : [src_argb1555] "r"(src_argb1555), [dst_argb] "r"(dst_argb), in ARGB1555ToARGBRow_MMI()
2882 void ARGB1555ToYRow_MMI(const uint8_t* src_argb1555, in ARGB1555ToYRow_MMI() argument
2992 : [src_argb1555] "r"(src_argb1555), [dst_y] "r"(dst_y), in ARGB1555ToYRow_MMI()
3367 void ARGB1555ToUVRow_MMI(const uint8_t* src_argb1555, in ARGB1555ToUVRow_MMI() argument
3647 : [src_argb1555] "r"(src_argb1555), in ARGB1555ToUVRow_MMI()
Dconvert_argb.cc1389 int ARGB1555ToARGB(const uint8_t* src_argb1555, in ARGB1555ToARGB() argument
1396 void (*ARGB1555ToARGBRow)(const uint8_t* src_argb1555, uint8_t* dst_argb, in ARGB1555ToARGB()
1398 if (!src_argb1555 || !dst_argb || width <= 0 || height == 0) { in ARGB1555ToARGB()
1404 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB()
1455 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB()
1456 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
Drow_dspr2.cc818 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()
Drow_msa.cc1506 void ARGB1555ToARGBRow_MSA(const uint8_t* src_argb1555, in ARGB1555ToARGBRow_MSA() argument
1517 src0 = (v8u16)__msa_ld_h((void*)src_argb1555, 0); in ARGB1555ToARGBRow_MSA()
1518 src1 = (v8u16)__msa_ld_h((void*)src_argb1555, 16); in ARGB1555ToARGBRow_MSA()
1551 src_argb1555 += 32; in ARGB1555ToARGBRow_MSA()
1655 void ARGB1555ToYRow_MSA(const uint8_t* src_argb1555, in ARGB1555ToYRow_MSA() argument
1669 src0 = (v8u16)__msa_ld_b((void*)src_argb1555, 0); in ARGB1555ToYRow_MSA()
1670 src1 = (v8u16)__msa_ld_b((void*)src_argb1555, 16); in ARGB1555ToYRow_MSA()
1709 src_argb1555 += 32; in ARGB1555ToYRow_MSA()
1859 void ARGB1555ToUVRow_MSA(const uint8_t* src_argb1555, in ARGB1555ToUVRow_MSA() argument
1865 const uint16_t* s = (const uint16_t*)src_argb1555; in ARGB1555ToUVRow_MSA()
[all …]
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Drow.h615 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555,
625 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
635 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int pix);
652 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
701 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555,
723 void ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555,
860 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb,
865 void ARGB1555ToARGBRow_AVX2(const uint8* src_argb1555, uint8* dst_argb,
873 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb,
887 void ARGB1555ToARGBRow_Any_SSE2(const uint8* src_argb1555, uint8* dst_argb,
[all …]
/external/libyuv/files/include/libyuv/
Drow.h991 void ARGB1555ToUVRow_NEON(const uint8_t* src_argb1555,
1036 void ARGB1555ToUVRow_MSA(const uint8_t* src_argb1555,
1076 void ARGB1555ToUVRow_MMI(const uint8_t* src_argb1555,
1092 void ARGB1555ToYRow_NEON(const uint8_t* src_argb1555,
1104 void ARGB1555ToYRow_MSA(const uint8_t* src_argb1555, uint8_t* dst_y, int width);
1111 void ARGB1555ToYRow_MMI(const uint8_t* src_argb1555, uint8_t* dst_y, int width);
1122 void ARGB1555ToYRow_C(const uint8_t* src_argb1555, uint8_t* dst_y, int width);
1448 void ARGB1555ToUVRow_C(const uint8_t* src_argb1555,
1893 void ARGB1555ToARGBRow_AVX2(const uint8_t* src_argb1555,
1920 void ARGB1555ToARGBRow_NEON(const uint8_t* src_argb1555,
[all …]
Dconvert.h388 int ARGB1555ToI420(const uint8_t* src_argb1555,
Dconvert_argb.h590 int ARGB1555ToARGB(const uint8_t* src_argb1555,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h894 void ARGB1555ToUVRow_NEON(const uint8_t* src_argb1555,
939 void ARGB1555ToUVRow_MSA(const uint8_t* src_argb1555,
950 void ARGB1555ToYRow_NEON(const uint8_t* src_argb1555,
962 void ARGB1555ToYRow_MSA(const uint8_t* src_argb1555, uint8_t* dst_y, int width);
971 void ARGB1555ToYRow_C(const uint8_t* src_argb1555, uint8_t* dst_y, int width);
1229 void ARGB1555ToUVRow_C(const uint8_t* src_argb1555,
1608 void ARGB1555ToARGBRow_AVX2(const uint8_t* src_argb1555,
1629 void ARGB1555ToARGBRow_NEON(const uint8_t* src_argb1555,
1632 void ARGB1555ToARGBRow_MSA(const uint8_t* src_argb1555,
1645 void ARGB1555ToARGBRow_C(const uint8_t* src_argb1555,
Dconvert.h312 int ARGB1555ToI420(const uint8_t* src_argb1555,
Dconvert_argb.h556 int ARGB1555ToARGB(const uint8_t* src_argb1555,

12