Searched refs:src_rgb565 (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert.cc1182 int RGB565ToI420(const uint8* src_rgb565, int src_stride_rgb565, argument
1189 void (*RGB565ToUVRow)(const uint8* src_rgb565, int src_stride_rgb565,
1191 void (*RGB565ToYRow)(const uint8* src_rgb565, uint8* dst_y, int pix) =
1201 if (!src_rgb565 || !dst_y || !dst_u || !dst_v ||
1208 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
1265 RGB565ToUVRow(src_rgb565, src_stride_rgb565, dst_u, dst_v, width);
1266 RGB565ToYRow(src_rgb565, dst_y, width);
1267 RGB565ToYRow(src_rgb565 + src_stride_rgb565, dst_y + dst_stride_y, width);
1269 RGB565ToARGBRow(src_rgb565, ro
[all...]
H A Dconvert_argb.cc526 int RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, argument
530 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int pix) =
532 if (!src_rgb565 || !dst_argb ||
539 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
567 RGB565ToARGBRow(src_rgb565, dst_argb, width);
568 src_rgb565 += src_stride_rgb565;
H A Drow_common.cc103 void RGB565ToARGBRow_C(const uint8* src_rgb565, uint8* dst_argb, int width) { argument
106 uint8 b = src_rgb565[0] & 0x1f;
107 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3);
108 uint8 r = src_rgb565[1] >> 3;
114 src_rgb565 += 2;
388 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int width) { argument
391 uint8 b = src_rgb565[0] & 0x1f;
392 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[
433 RGB565ToUVRow_C(const uint8* src_rgb565, int src_stride_rgb565, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
H A Drow_neon.cc1004 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix) { argument
1016 : "+r"(src_rgb565), // %0
2046 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, argument
2104 : "+r"(src_rgb565), // %0
2255 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { argument
2275 : "+r"(src_rgb565), // %0
H A Drow_neon64.cc1062 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix) { argument
1074 : "+r"(src_rgb565), // %0
2170 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, argument
2228 : "+r"(src_rgb565), // %0
2385 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { argument
2405 : "+r"(src_rgb565), // %0
H A Drow_win.cc454 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, argument
471 mov eax, [esp + 4] // src_rgb565
/external/chromium_org/third_party/libyuv/source/
H A Dconvert.cc1172 int RGB565ToI420(const uint8* src_rgb565, int src_stride_rgb565, argument
1179 void (*RGB565ToUVRow)(const uint8* src_rgb565, int src_stride_rgb565,
1181 void (*RGB565ToYRow)(const uint8* src_rgb565, uint8* dst_y, int pix) =
1194 if (!src_rgb565 || !dst_y || !dst_u || !dst_v ||
1201 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
1251 RGB565ToUVRow(src_rgb565, src_stride_rgb565, dst_u, dst_v, width);
1252 RGB565ToYRow(src_rgb565, dst_y, width);
1253 RGB565ToYRow(src_rgb565 + src_stride_rgb565, dst_y + dst_stride_y, width);
1255 RGB565ToARGBRow(src_rgb565, ro
[all...]
H A Dconvert_argb.cc526 int RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, argument
530 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int pix) =
532 if (!src_rgb565 || !dst_argb ||
539 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
567 RGB565ToARGBRow(src_rgb565, dst_argb, width);
568 src_rgb565 += src_stride_rgb565;
H A Drow_common.cc103 void RGB565ToARGBRow_C(const uint8* src_rgb565, uint8* dst_argb, int width) { argument
106 uint8 b = src_rgb565[0] & 0x1f;
107 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[1] & 0x07) << 3);
108 uint8 r = src_rgb565[1] >> 3;
114 src_rgb565 += 2;
388 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int width) { argument
391 uint8 b = src_rgb565[0] & 0x1f;
392 uint8 g = (src_rgb565[0] >> 5) | ((src_rgb565[
433 RGB565ToUVRow_C(const uint8* src_rgb565, int src_stride_rgb565, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
H A Drow_neon.cc1005 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix) { argument
1017 : "+r"(src_rgb565), // %0
2047 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565, argument
2105 : "+r"(src_rgb565), // %0
2256 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { argument
2276 : "+r"(src_rgb565), // %0
H A Drow_win.cc455 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, argument
472 mov eax, [esp + 4] // src_rgb565
/external/libyuv/files/source/
H A Dconvert_argb.cc431 int RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, argument
434 if (!src_rgb565 || !dst_argb ||
441 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
444 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int pix) =
455 RGB565ToARGBRow(src_rgb565, dst_argb, width);
456 src_rgb565 += src_stride_rgb565;
H A Dconvert.cc1300 int RGB565ToI420(const uint8* src_rgb565, int src_stride_rgb565, argument
1307 } else if (!src_rgb565 ||
1315 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
1324 TestReadSafe(src_rgb565, src_stride_rgb565, width, height, 2, 16)) {
1352 RGB565ToARGBRow(src_rgb565, row, width);
1353 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kMaxStride, width);
1357 src_rgb565 += src_stride_rgb565 * 2;
1363 RGB565ToARGBRow_C(src_rgb565, row, width);
H A Drow_win.cc324 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, argument
341 mov eax, [esp + 4] // src_rgb565
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
H A Drow.h683 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565,
694 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix);
704 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int pix);
721 void RGB565ToYRow_Any_NEON(const uint8* src_rgb565, uint8* dst_y, int pix);
779 void RGB565ToUVRow_Any_NEON(const uint8* src_rgb565, int src_stride_rgb565,
801 void RGB565ToUVRow_C(const uint8* src_rgb565, int src_stride_rgb565,
937 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, int pix);
945 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix);
957 void RGB565ToARGBRow_Any_SSE2(const uint8* src_rgb565, uint8* dst_argb,
965 void RGB565ToARGBRow_Any_NEON(const uint8* src_rgb565, uint
[all...]
/external/chromium_org/third_party/libyuv/include/libyuv/
H A Drow.h591 void RGB565ToUVRow_NEON(const uint8* src_rgb565, int src_stride_rgb565,
602 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix);
612 void RGB565ToYRow_C(const uint8* src_rgb565, uint8* dst_y, int pix);
629 void RGB565ToYRow_Any_NEON(const uint8* src_rgb565, uint8* dst_y, int pix);
687 void RGB565ToUVRow_Any_NEON(const uint8* src_rgb565, int src_stride_rgb565,
709 void RGB565ToUVRow_C(const uint8* src_rgb565, int src_stride_rgb565,
845 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, int pix);
853 void RGB565ToARGBRow_NEON(const uint8* src_rgb565, uint8* dst_argb, int pix);
865 void RGB565ToARGBRow_Any_SSE2(const uint8* src_rgb565, uint8* dst_argb,
873 void RGB565ToARGBRow_Any_NEON(const uint8* src_rgb565, uint
[all...]

Completed in 647 milliseconds