Home
last modified time | relevance | path

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

12

/external/libaom/libaom/third_party/libyuv/source/
Dconvert.cc1264 int ARGB4444ToI420(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420() argument
1271 void (*ARGB4444ToUVRow)(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
1273 void (*ARGB4444ToYRow)(const uint8* src_argb4444, uint8* dst_y, int pix) = in ARGB4444ToI420()
1283 if (!src_argb4444 || !dst_y || !dst_u || !dst_v || in ARGB4444ToI420()
1290 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
1352 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
1353 ARGB4444ToYRow(src_argb4444, dst_y, width); in ARGB4444ToI420()
1354 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
1357 ARGB4444ToARGBRow(src_argb4444, row, width); in ARGB4444ToI420()
1358 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
[all …]
Drow_common.cc135 void ARGB4444ToARGBRow_C(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_C() argument
139 uint8 b = src_argb4444[0] & 0x0f; in ARGB4444ToARGBRow_C()
140 uint8 g = src_argb4444[0] >> 4; in ARGB4444ToARGBRow_C()
141 uint8 r = src_argb4444[1] & 0x0f; in ARGB4444ToARGBRow_C()
142 uint8 a = src_argb4444[1] >> 4; in ARGB4444ToARGBRow_C()
148 src_argb4444 += 2; in ARGB4444ToARGBRow_C()
474 void ARGB4444ToYRow_C(const uint8* src_argb4444, uint8* dst_y, int width) { in ARGB4444ToYRow_C() argument
477 uint8 b = src_argb4444[0] & 0x0f; in ARGB4444ToYRow_C()
478 uint8 g = src_argb4444[0] >> 4; in ARGB4444ToYRow_C()
479 uint8 r = src_argb4444[1] & 0x0f; in ARGB4444ToYRow_C()
[all …]
Dconvert_argb.cc664 int ARGB4444ToARGB(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToARGB() argument
668 void (*ARGB4444ToARGBRow)(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGB()
670 if (!src_argb4444 || !dst_argb || in ARGB4444ToARGB()
677 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
713 ARGB4444ToARGBRow(src_argb4444, dst_argb, width); in ARGB4444ToARGB()
714 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
Drow_neon64.cc1058 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_NEON() argument
1069 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
2086 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
2088 const uint8* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
2142 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
2216 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int pix) { in ARGB4444ToYRow_NEON() argument
2235 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Drow_neon.cc1060 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_NEON() argument
1073 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
2122 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
2180 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
2247 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int pix) { in ARGB4444ToYRow_NEON() argument
2267 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc1502 int ARGB4444ToI420(const uint8_t* src_argb4444, in ARGB4444ToI420() argument
1514 void (*ARGB4444ToUVRow)(const uint8_t* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
1517 void (*ARGB4444ToYRow)(const uint8_t* src_argb4444, uint8_t* dst_y, in ARGB4444ToI420()
1528 if (!src_argb4444 || !dst_y || !dst_u || !dst_v || width <= 0 || in ARGB4444ToI420()
1535 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
1620 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
1621 ARGB4444ToYRow(src_argb4444, dst_y, width); in ARGB4444ToI420()
1622 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
1625 ARGB4444ToARGBRow(src_argb4444, row, width); in ARGB4444ToI420()
1626 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
[all …]
Drow_neon64.cc942 void ARGB4444ToARGBRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_NEON() argument
953 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1803 void ARGB4444ToUVRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToUVRow_NEON() argument
1808 const uint8_t* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
1856 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
1920 void ARGB4444ToYRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToYRow_NEON() argument
1939 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Drow_neon.cc888 void ARGB4444ToARGBRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_NEON() argument
899 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1774 void ARGB4444ToUVRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToUVRow_NEON() argument
1829 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
1889 void ARGB4444ToYRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToYRow_NEON() argument
1908 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Drow_common.cc163 void ARGB4444ToARGBRow_C(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_C() argument
168 uint8_t b = src_argb4444[0] & 0x0f; in ARGB4444ToARGBRow_C()
169 uint8_t g = src_argb4444[0] >> 4; in ARGB4444ToARGBRow_C()
170 uint8_t r = src_argb4444[1] & 0x0f; in ARGB4444ToARGBRow_C()
171 uint8_t a = src_argb4444[1] >> 4; in ARGB4444ToARGBRow_C()
177 src_argb4444 += 2; in ARGB4444ToARGBRow_C()
551 void ARGB4444ToYRow_C(const uint8_t* src_argb4444, uint8_t* dst_y, int width) { in ARGB4444ToYRow_C() argument
554 uint8_t b = src_argb4444[0] & 0x0f; in ARGB4444ToYRow_C()
555 uint8_t g = src_argb4444[0] >> 4; in ARGB4444ToYRow_C()
556 uint8_t r = src_argb4444[1] & 0x0f; in ARGB4444ToYRow_C()
[all …]
Dconvert_argb.cc1408 int ARGB4444ToARGB(const uint8_t* src_argb4444, in ARGB4444ToARGB() argument
1415 void (*ARGB4444ToARGBRow)(const uint8_t* src_argb4444, uint8_t* dst_argb, in ARGB4444ToARGB()
1417 if (!src_argb4444 || !dst_argb || width <= 0 || height == 0) { in ARGB4444ToARGB()
1423 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
1466 ARGB4444ToARGBRow(src_argb4444, dst_argb, width); in ARGB4444ToARGB()
1467 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
/external/libyuv/files/source/
Drow_neon64.cc942 void ARGB4444ToARGBRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_NEON() argument
953 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1803 void ARGB4444ToUVRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToUVRow_NEON() argument
1808 const uint8_t* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
1856 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
1920 void ARGB4444ToYRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToYRow_NEON() argument
1939 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Drow_neon.cc888 void ARGB4444ToARGBRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_NEON() argument
899 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1774 void ARGB4444ToUVRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToUVRow_NEON() argument
1829 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
1889 void ARGB4444ToYRow_NEON(const uint8_t* src_argb4444, in ARGB4444ToYRow_NEON() argument
1908 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Dconvert.cc2197 int ARGB4444ToI420(const uint8_t* src_argb4444, in ARGB4444ToI420() argument
2209 void (*ARGB4444ToUVRow)(const uint8_t* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
2212 void (*ARGB4444ToYRow)(const uint8_t* src_argb4444, uint8_t* dst_y, in ARGB4444ToI420()
2223 if (!src_argb4444 || !dst_y || !dst_u || !dst_v || width <= 0 || in ARGB4444ToI420()
2230 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
2338 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
2339 ARGB4444ToYRow(src_argb4444, dst_y, width); in ARGB4444ToI420()
2340 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
2343 ARGB4444ToARGBRow(src_argb4444, row, width); in ARGB4444ToI420()
2344 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
[all …]
Drow_common.cc163 void ARGB4444ToARGBRow_C(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_C() argument
168 uint8_t b = src_argb4444[0] & 0x0f; in ARGB4444ToARGBRow_C()
169 uint8_t g = src_argb4444[0] >> 4; in ARGB4444ToARGBRow_C()
170 uint8_t r = src_argb4444[1] & 0x0f; in ARGB4444ToARGBRow_C()
171 uint8_t a = src_argb4444[1] >> 4; in ARGB4444ToARGBRow_C()
177 src_argb4444 += 2; in ARGB4444ToARGBRow_C()
551 void ARGB4444ToYRow_C(const uint8_t* src_argb4444, uint8_t* dst_y, int width) { in ARGB4444ToYRow_C() argument
554 uint8_t b = src_argb4444[0] & 0x0f; in ARGB4444ToYRow_C()
555 uint8_t g = src_argb4444[0] >> 4; in ARGB4444ToYRow_C()
556 uint8_t r = src_argb4444[1] & 0x0f; in ARGB4444ToYRow_C()
[all …]
Drow_mmi.cc266 void ARGB4444ToARGBRow_MMI(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_MMI() argument
306 : [src_argb4444] "r"(src_argb4444), [dst_argb] "r"(dst_argb), in ARGB4444ToARGBRow_MMI()
2999 void ARGB4444ToYRow_MMI(const uint8_t* src_argb4444, in ARGB4444ToYRow_MMI() argument
3093 : [src_argb4444] "r"(src_argb4444), [dst_y] "r"(dst_y), in ARGB4444ToYRow_MMI()
3657 void ARGB4444ToUVRow_MMI(const uint8_t* src_argb4444, in ARGB4444ToUVRow_MMI() argument
3903 : [src_argb4444] "r"(src_argb4444), in ARGB4444ToUVRow_MMI()
Dconvert_argb.cc1464 int ARGB4444ToARGB(const uint8_t* src_argb4444, in ARGB4444ToARGB() argument
1471 void (*ARGB4444ToARGBRow)(const uint8_t* src_argb4444, uint8_t* dst_argb, in ARGB4444ToARGB()
1473 if (!src_argb4444 || !dst_argb || width <= 0 || height == 0) { in ARGB4444ToARGB()
1479 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
1530 ARGB4444ToARGBRow(src_argb4444, dst_argb, width); in ARGB4444ToARGB()
1531 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
Drow_dspr2.cc847 void ARGB4444ToARGBRow_DSPR2(const uint8* src_argb4444, in ARGB4444ToARGBRow_DSPR2() argument
865 : [src_argb4444] "+r"(src_argb4444), [dst_argb] "+r"(dst_argb), in ARGB4444ToARGBRow_DSPR2()
Drow_msa.cc1477 void ARGB4444ToARGBRow_MSA(const uint8_t* src_argb4444, in ARGB4444ToARGBRow_MSA() argument
1486 src0 = (v16u8)__msa_ld_b((v16u8*)src_argb4444, 0); in ARGB4444ToARGBRow_MSA()
1487 src1 = (v16u8)__msa_ld_b((v16u8*)src_argb4444, 16); in ARGB4444ToARGBRow_MSA()
1501 src_argb4444 += 32; in ARGB4444ToARGBRow_MSA()
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Drow.h617 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444,
626 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int pix);
636 void ARGB4444ToYRow_C(const uint8* src_argb4444, uint8* dst_y, int pix);
653 void ARGB4444ToYRow_Any_NEON(const uint8* src_argb4444, uint8* dst_y, int pix);
704 void ARGB4444ToUVRow_Any_NEON(const uint8* src_argb4444,
725 void ARGB4444ToUVRow_C(const uint8* src_argb4444, int src_stride_argb4444,
862 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444, uint8* dst_argb,
867 void ARGB4444ToARGBRow_AVX2(const uint8* src_argb4444, uint8* dst_argb,
875 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, uint8* dst_argb,
889 void ARGB4444ToARGBRow_Any_SSE2(const uint8* src_argb4444, uint8* dst_argb,
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert.h325 int ARGB4444ToI420(const uint8_t* src_argb4444,
Drow.h899 void ARGB4444ToUVRow_NEON(const uint8_t* src_argb4444,
953 void ARGB4444ToYRow_NEON(const uint8_t* src_argb4444,
972 void ARGB4444ToYRow_C(const uint8_t* src_argb4444, uint8_t* dst_y, int width);
1234 void ARGB4444ToUVRow_C(const uint8_t* src_argb4444,
1611 void ARGB4444ToARGBRow_AVX2(const uint8_t* src_argb4444,
1635 void ARGB4444ToARGBRow_NEON(const uint8_t* src_argb4444,
1638 void ARGB4444ToARGBRow_MSA(const uint8_t* src_argb4444,
1648 void ARGB4444ToARGBRow_C(const uint8_t* src_argb4444,
Dconvert_argb.h565 int ARGB4444ToARGB(const uint8_t* src_argb4444,
/external/libyuv/files/include/libyuv/
Drow.h996 void ARGB4444ToUVRow_NEON(const uint8_t* src_argb4444,
1081 void ARGB4444ToUVRow_MMI(const uint8_t* src_argb4444,
1095 void ARGB4444ToYRow_NEON(const uint8_t* src_argb4444,
1112 void ARGB4444ToYRow_MMI(const uint8_t* src_argb4444, uint8_t* dst_y, int width);
1123 void ARGB4444ToYRow_C(const uint8_t* src_argb4444, uint8_t* dst_y, int width);
1453 void ARGB4444ToUVRow_C(const uint8_t* src_argb4444,
1896 void ARGB4444ToARGBRow_AVX2(const uint8_t* src_argb4444,
1929 void ARGB4444ToARGBRow_NEON(const uint8_t* src_argb4444,
1932 void ARGB4444ToARGBRow_MSA(const uint8_t* src_argb4444,
1935 void ARGB4444ToARGBRow_MMI(const uint8_t* src_argb4444,
[all …]
Dconvert.h401 int ARGB4444ToI420(const uint8_t* src_argb4444,
Dconvert_argb.h599 int ARGB4444ToARGB(const uint8_t* src_argb4444,

12