Home
last modified time | relevance | path

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

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc1172 int RGB565ToI420(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToI420() argument
1179 void (*RGB565ToUVRow)(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToI420()
1181 void (*RGB565ToYRow)(const uint8* src_rgb565, uint8* dst_y, int pix) = in RGB565ToI420()
1194 if (!src_rgb565 || !dst_y || !dst_u || !dst_v || in RGB565ToI420()
1201 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToI420()
1251 RGB565ToUVRow(src_rgb565, src_stride_rgb565, dst_u, dst_v, width); in RGB565ToI420()
1252 RGB565ToYRow(src_rgb565, dst_y, width); in RGB565ToI420()
1253 RGB565ToYRow(src_rgb565 + src_stride_rgb565, dst_y + dst_stride_y, width); in RGB565ToI420()
1255 RGB565ToARGBRow(src_rgb565, row, width); in RGB565ToI420()
1256 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kRowSize, width); in RGB565ToI420()
[all …]
Drow_common.cc103 void RGB565ToARGBRow_C(const uint8* src_rgb565, uint8* dst_argb, int width) { in RGB565ToARGBRow_C() argument
106 uint8 b = src_rgb565[0] & 0x1f; in RGB565ToARGBRow_C()
107 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToARGBRow_C()
108 uint8 r = src_rgb565[1] >> 3; in RGB565ToARGBRow_C()
114 src_rgb565 += 2; in RGB565ToARGBRow_C()
388 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int width) { in RGB565ToYRow_C() argument
391 uint8 b = src_rgb565[0] & 0x1f; in RGB565ToYRow_C()
392 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3); in RGB565ToYRow_C()
393 uint8 r = src_rgb565[1] >> 3; in RGB565ToYRow_C()
398 src_rgb565 += 2; in RGB565ToYRow_C()
[all …]
Dconvert_argb.cc526 int RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToARGB() argument
530 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int pix) = in RGB565ToARGB()
532 if (!src_rgb565 || !dst_argb || in RGB565ToARGB()
539 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToARGB()
567 RGB565ToARGBRow(src_rgb565, dst_argb, width); in RGB565ToARGB()
568 src_rgb565 += src_stride_rgb565; in RGB565ToARGB()
Drow_neon.cc1004 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix) { in RGB565ToARGBRow_NEON() argument
1016 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON()
2046 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToUVRow_NEON() argument
2104 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON()
2255 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument
2275 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
Drow_neon64.cc1063 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix) { in RGB565ToARGBRow_NEON() argument
1075 : "+r"(src_rgb565), // %0 in RGB565ToARGBRow_NEON()
2169 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToUVRow_NEON() argument
2227 : "+r"(src_rgb565), // %0 in RGB565ToUVRow_NEON()
2384 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument
2404 : "+r"(src_rgb565), // %0 in RGB565ToYRow_NEON()
Drow_win.cc455 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, in RGB565ToARGBRow_SSE2() argument
/external/libyuv/files/source/
Dconvert_argb.cc431 int RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToARGB() argument
434 if (!src_rgb565 || !dst_argb || in RGB565ToARGB()
441 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToARGB()
444 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int pix) = in RGB565ToARGB()
455 RGB565ToARGBRow(src_rgb565, dst_argb, width); in RGB565ToARGB()
456 src_rgb565 += src_stride_rgb565; in RGB565ToARGB()
Dconvert.cc1300 int RGB565ToI420(const uint8* src_rgb565, int src_stride_rgb565, in RGB565ToI420() argument
1307 } else if (!src_rgb565 || in RGB565ToI420()
1315 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565; in RGB565ToI420()
1324 TestReadSafe(src_rgb565, src_stride_rgb565, width, height, 2, 16)) { in RGB565ToI420()
1352 RGB565ToARGBRow(src_rgb565, row, width); in RGB565ToI420()
1353 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kMaxStride, width); in RGB565ToI420()
1357 src_rgb565 += src_stride_rgb565 * 2; in RGB565ToI420()
1363 RGB565ToARGBRow_C(src_rgb565, row, width); in RGB565ToI420()
Drow_win.cc324 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, in RGB565ToARGBRow_SSE2() argument
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h595 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565,
606 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix);
616 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int pix);
633 void RGB565ToYRow_Any_NEON(const uint8* src_rgb565, uint8* dst_y, int pix);
691 void RGB565ToUVRow_Any_NEON(const uint8* src_rgb565, int src_stride_rgb565,
713 void RGB565ToUVRow_C(const uint8* src_rgb565, int src_stride_rgb565,
849 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, int pix);
857 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix);
869 void RGB565ToARGBRow_Any_SSE2(const uint8* src_rgb565, uint8* dst_argb,
877 void RGB565ToARGBRow_Any_NEON(const uint8* src_rgb565, uint8* dst_argb,