Home
last modified time | relevance | path

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

/external/chromium_org/third_party/libyuv/source/
Dconvert.cc1268 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420() argument
1273 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || in ARGB1555ToI420()
1280 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToI420()
1285 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToI420()
1287 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int pix) = in ARGB1555ToI420()
1344 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width); in ARGB1555ToI420()
1345 ARGB1555ToYRow(src_argb1555, dst_y, width); in ARGB1555ToI420()
1346 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y, in ARGB1555ToI420()
1349 ARGB1555ToARGBRow(src_argb1555, row, width); in ARGB1555ToI420()
1350 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.cc546 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToARGB() argument
549 if (!src_argb1555 || !dst_argb || in ARGB1555ToARGB()
556 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555; in ARGB1555ToARGB()
566 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGB()
586 ARGB1555ToARGBRow(src_argb1555, dst_argb, width); in ARGB1555ToARGB()
587 src_argb1555 += src_stride_argb1555; in ARGB1555ToARGB()
Drow_neon.cc956 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, in ARGB1555ToARGBRow_NEON() argument
967 : "+r"(src_argb1555), // %0 in ARGB1555ToARGBRow_NEON()
1906 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, in ARGB1555ToUVRow_NEON() argument
1958 : "+r"(src_argb1555), // %0 in ARGB1555ToUVRow_NEON()
2059 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { in ARGB1555ToYRow_NEON() argument
2077 : "+r"(src_argb1555), // %0 in ARGB1555ToYRow_NEON()
Drow_win.cc342 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.h569 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555,
579 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
589 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int pix);
606 void ARGB1555ToYRow_Any_NEON(const uint8* src_argb1555, uint8* dst_y, int pix);
665 void ARGB1555ToUVRow_Any_NEON(const uint8* src_argb1555,
687 void ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555,
822 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb,
830 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb,
843 void ARGB1555ToARGBRow_Any_SSE2(const uint8* src_argb1555, uint8* dst_argb,
851 void ARGB1555ToARGBRow_Any_NEON(const uint8* src_argb1555, uint8* dst_argb,