Home
last modified time | relevance | path

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

/external/chromium_org/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.cc1052 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument
1065 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
2117 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument
2175 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
2284 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { in ARGB1555ToYRow_NEON() argument
2304 : "+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/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
Dconvert.cc1299 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() argument
1306 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420()
1308 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int pix) = in ARGB1555ToI420()
1318 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || in ARGB1555ToI420()
1325 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420()
1381 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420()
1382 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420()
1383 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420()
1386 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420()
1387 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.cc1111 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument
1124 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
2242 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument
2300 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
2415 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { in ARGB1555ToYRow_NEON() argument
2435 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_win.cc505 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/chromium_org/third_party/libyuv/include/libyuv/
Drow.h593 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555,
603 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
613 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int pix);
630 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
689 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555,
711 void ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555,
846 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb,
854 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb,
867 void ARGB1555ToARGBRow_Any_SSE2(const uint8* src_argb1555, uint8* dst_argb,
875 void ARGB1555ToARGBRow_Any_NEON(const uint8* src_argb1555, uint8* dst_argb,
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
Drow.h685 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555,
695 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
705 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int pix);
722 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
781 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555,
803 void ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555,
938 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb,
946 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb,
959 void ARGB1555ToARGBRow_Any_SSE2(const uint8* src_argb1555, uint8* dst_argb,
967 void ARGB1555ToARGBRow_Any_NEON(const uint8* src_argb1555, uint8* dst_argb,