Home
last modified time | relevance | path

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

/external/libyuv/files/source/
Dconvert.cc1482 int ARGB4444ToI420(const uint8* src_argb4444, in ARGB4444ToI420() argument
1494 void (*ARGB4444ToUVRow)(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
1497 void (*ARGB4444ToYRow)(const uint8* src_argb4444, uint8* dst_y, int width) = in ARGB4444ToI420()
1507 if (!src_argb4444 || !dst_y || !dst_u || !dst_v || width <= 0 || in ARGB4444ToI420()
1514 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
1599 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
1600 ARGB4444ToYRow(src_argb4444, dst_y, width); in ARGB4444ToI420()
1601 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
1604 ARGB4444ToARGBRow(src_argb4444, row, width); in ARGB4444ToI420()
1605 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
[all …]
Drow_neon64.cc909 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, in ARGB4444ToARGBRow_NEON() argument
921 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1863 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, in ARGB4444ToUVRow_NEON() argument
1868 const uint8* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
1922 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
1990 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int width) { in ARGB4444ToYRow_NEON() argument
2009 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Drow_common.cc150 void ARGB4444ToARGBRow_C(const uint8* src_argb4444, in ARGB4444ToARGBRow_C() argument
155 uint8 b = src_argb4444[0] & 0x0f; in ARGB4444ToARGBRow_C()
156 uint8 g = src_argb4444[0] >> 4; in ARGB4444ToARGBRow_C()
157 uint8 r = src_argb4444[1] & 0x0f; in ARGB4444ToARGBRow_C()
158 uint8 a = src_argb4444[1] >> 4; in ARGB4444ToARGBRow_C()
164 src_argb4444 += 2; in ARGB4444ToARGBRow_C()
471 void ARGB4444ToYRow_C(const uint8* src_argb4444, uint8* dst_y, int width) { in ARGB4444ToYRow_C() argument
474 uint8 b = src_argb4444[0] & 0x0f; in ARGB4444ToYRow_C()
475 uint8 g = src_argb4444[0] >> 4; in ARGB4444ToYRow_C()
476 uint8 r = src_argb4444[1] & 0x0f; in ARGB4444ToYRow_C()
[all …]
Drow_neon.cc899 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, in ARGB4444ToARGBRow_NEON() argument
912 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1892 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, in ARGB4444ToUVRow_NEON() argument
1952 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
2017 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int width) { in ARGB4444ToYRow_NEON() argument
2036 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Dconvert_argb.cc1225 int ARGB4444ToARGB(const uint8* src_argb4444, in ARGB4444ToARGB() argument
1232 void (*ARGB4444ToARGBRow)(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGB()
1234 if (!src_argb4444 || !dst_argb || width <= 0 || height == 0) { in ARGB4444ToARGB()
1240 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
1291 ARGB4444ToARGBRow(src_argb4444, dst_argb, width); in ARGB4444ToARGB()
1292 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.cc1471 void ARGB4444ToARGBRow_MSA(const uint8* src_argb4444, in ARGB4444ToARGBRow_MSA() argument
1480 src0 = (v16u8)__msa_ld_b((v16u8*)src_argb4444, 0); in ARGB4444ToARGBRow_MSA()
1481 src1 = (v16u8)__msa_ld_b((v16u8*)src_argb4444, 16); in ARGB4444ToARGBRow_MSA()
1495 src_argb4444 += 32; in ARGB4444ToARGBRow_MSA()
Drow_win.cc592 __declspec(naked) void ARGB4444ToARGBRow_AVX2(const uint8* src_argb4444,
683 __declspec(naked) void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444,
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc1227 int ARGB4444ToI420(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420() argument
1234 void (*ARGB4444ToUVRow)(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
1236 void (*ARGB4444ToYRow)(const uint8* src_argb4444, uint8* dst_y, int width) = in ARGB4444ToI420()
1246 if (!src_argb4444 || !dst_y || !dst_u || !dst_v || in ARGB4444ToI420()
1253 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
1315 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
1316 ARGB4444ToYRow(src_argb4444, dst_y, width); in ARGB4444ToI420()
1317 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
1320 ARGB4444ToARGBRow(src_argb4444, row, width); in ARGB4444ToI420()
1321 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
[all …]
Drow_neon64.cc938 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_NEON() argument
949 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1889 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
1891 const uint8* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
1945 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
2013 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int width) { in ARGB4444ToYRow_NEON() argument
2032 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Drow_common.cc149 void ARGB4444ToARGBRow_C(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_C() argument
153 uint8 b = src_argb4444[0] & 0x0f; in ARGB4444ToARGBRow_C()
154 uint8 g = src_argb4444[0] >> 4; in ARGB4444ToARGBRow_C()
155 uint8 r = src_argb4444[1] & 0x0f; in ARGB4444ToARGBRow_C()
156 uint8 a = src_argb4444[1] >> 4; in ARGB4444ToARGBRow_C()
162 src_argb4444 += 2; in ARGB4444ToARGBRow_C()
466 void ARGB4444ToYRow_C(const uint8* src_argb4444, uint8* dst_y, int width) { in ARGB4444ToYRow_C() argument
469 uint8 b = src_argb4444[0] & 0x0f; in ARGB4444ToYRow_C()
470 uint8 g = src_argb4444[0] >> 4; in ARGB4444ToYRow_C()
471 uint8 r = src_argb4444[1] & 0x0f; in ARGB4444ToYRow_C()
[all …]
Drow_neon.cc935 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_NEON() argument
947 : "+r"(src_argb4444), // %0 in ARGB4444ToARGBRow_NEON()
1937 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
1994 : "+r"(src_argb4444), // %0 in ARGB4444ToUVRow_NEON()
2059 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int width) { in ARGB4444ToYRow_NEON() argument
2078 : "+r"(src_argb4444), // %0 in ARGB4444ToYRow_NEON()
Dconvert_argb.cc1100 int ARGB4444ToARGB(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToARGB() argument
1104 void (*ARGB4444ToARGBRow)(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGB()
1106 if (!src_argb4444 || !dst_argb || in ARGB4444ToARGB()
1113 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
1149 ARGB4444ToARGBRow(src_argb4444, dst_argb, width); in ARGB4444ToARGB()
1150 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
Drow_win.cc623 void ARGB4444ToARGBRow_AVX2(const uint8* src_argb4444, uint8* dst_argb,
714 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444, uint8* dst_argb,
/external/libyuv/files/include/libyuv/
Drow.h936 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444,
988 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int width);
1029 void ARGB4444ToYRow_C(const uint8* src_argb4444, uint8* dst_y, int width);
1052 void ARGB4444ToYRow_Any_NEON(const uint8* src_argb4444,
1193 void ARGB4444ToUVRow_Any_NEON(const uint8* src_argb4444,
1313 void ARGB4444ToUVRow_C(const uint8* src_argb4444,
1553 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444,
1560 void ARGB4444ToARGBRow_AVX2(const uint8* src_argb4444,
1578 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444,
1587 void ARGB4444ToARGBRow_DSPR2(const uint8* src_argb4444,
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h683 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444,
692 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int width);
702 void ARGB4444ToYRow_C(const uint8* src_argb4444, uint8* dst_y, int width);
720 void ARGB4444ToYRow_Any_NEON(const uint8* src_argb4444, uint8* dst_y,
774 void ARGB4444ToUVRow_Any_NEON(const uint8* src_argb4444,
795 void ARGB4444ToUVRow_C(const uint8* src_argb4444, int src_stride_argb4444,
941 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444, uint8* dst_argb,
946 void ARGB4444ToARGBRow_AVX2(const uint8* src_argb4444, uint8* dst_argb,
955 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, uint8* dst_argb,
972 void ARGB4444ToARGBRow_Any_SSE2(const uint8* src_argb4444, uint8* dst_argb,
[all …]