Home
last modified time | relevance | path

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

/external/libvpx/libvpx/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()
Drow_win.cc628 void ARGB4444ToARGBRow_AVX2(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_AVX2() argument
719 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_SSE2() argument
/external/libyuv/files/source/
Dconvert_argb.cc497 int ARGB4444ToARGB(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToARGB() argument
500 if (!src_argb4444 || !dst_argb || in ARGB4444ToARGB()
507 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
510 void (*ARGB4444ToARGBRow)(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGB()
521 ARGB4444ToARGBRow(src_argb4444, dst_argb, width); in ARGB4444ToARGB()
522 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
Dconvert.cc1443 int ARGB4444ToI420(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420() argument
1450 } else if (!src_argb4444 || in ARGB4444ToI420()
1458 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
1467 TestReadSafe(src_argb4444, src_stride_argb4444, width, height, 2, 16)) { in ARGB4444ToI420()
1495 ARGB4444ToARGBRow(src_argb4444, row, width); in ARGB4444ToI420()
1496 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, in ARGB4444ToI420()
1501 src_argb4444 += src_stride_argb4444 * 2; in ARGB4444ToI420()
1507 ARGB4444ToARGBRow_C(src_argb4444, row, width); in ARGB4444ToI420()
Drow_win.cc429 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444, uint8* dst_argb, in ARGB4444ToARGBRow_SSE2() argument
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h616 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444,
625 void ARGB4444ToYRow_NEON(const uint8* src_argb4444, uint8* dst_y, int pix);
635 void ARGB4444ToYRow_C(const uint8* src_argb4444, uint8* dst_y, int pix);
652 void ARGB4444ToYRow_Any_NEON(const uint8* src_argb4444, uint8* dst_y, int pix);
703 void ARGB4444ToUVRow_Any_NEON(const uint8* src_argb4444,
724 void ARGB4444ToUVRow_C(const uint8* src_argb4444, int src_stride_argb4444,
861 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb4444, uint8* dst_argb,
866 void ARGB4444ToARGBRow_AVX2(const uint8* src_argb4444, uint8* dst_argb,
874 void ARGB4444ToARGBRow_NEON(const uint8* src_argb4444, uint8* dst_argb,
888 void ARGB4444ToARGBRow_Any_SSE2(const uint8* src_argb4444, uint8* dst_argb,
[all …]