Home
last modified time | relevance | path

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

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc1284 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() argument
1291 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420()
1293 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int pix) = in ARGB1555ToI420()
1306 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || in ARGB1555ToI420()
1313 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420()
1363 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420()
1364 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420()
1365 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420()
1368 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420()
1369 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()
403 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { in ARGB1555ToYRow_C() argument
406 uint8 b = src_argb1555[0] & 0x1f; in ARGB1555ToYRow_C()
407 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3); in ARGB1555ToYRow_C()
408 uint8 r = (src_argb1555[1] & 0x7c) >> 2; in ARGB1555ToYRow_C()
[all …]
Dconvert_argb.cc576 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToARGB() argument
580 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGB()
582 if (!src_argb1555 || !dst_argb || in ARGB1555ToARGB()
589 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB()
617 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB()
618 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
Drow_neon.cc1051 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument
1064 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
2116 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument
2174 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
2283 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { in ARGB1555ToYRow_NEON() argument
2303 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_neon64.cc1112 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument
1125 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
2241 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument
2299 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
2414 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { in ARGB1555ToYRow_NEON() argument
2434 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_win.cc506 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_SSE2() argument
/external/libyuv/files/source/
Dconvert_argb.cc464 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()
Dconvert.cc1371 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()
Drow_win.cc375 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_SSE2() argument
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h597 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555,
607 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
617 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int pix);
634 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
693 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555,
715 void ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555,
850 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb,
858 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb,
871 void ARGB1555ToARGBRow_Any_SSE2(const uint8* src_argb1555, uint8* dst_argb,
879 void ARGB1555ToARGBRow_Any_NEON(const uint8* src_argb1555, uint8* dst_argb,