Searched defs:dst_rgb565 (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_from_argb.cc857 uint8* dst_rgb565, int dst_stride_rgb565,
862 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) {
898 ARGBToRGB565DitherRow(src_argb, dst_rgb565,
901 dst_rgb565 += dst_stride_rgb565;
910 uint8* dst_rgb565, int dst_stride_rgb565,
915 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) {
956 ARGBToRGB565Row(src_argb, dst_rgb565, width);
958 dst_rgb565 += dst_stride_rgb565;
856 ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) argument
909 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Dconvert_from.cc724 uint8* dst_rgb565, int dst_stride_rgb565,
733 if (!src_y || !src_u || !src_v || !dst_rgb565 ||
740 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
769 I422ToRGB565Row(src_y, src_u, src_v, dst_rgb565, &kYuvI601Constants, width);
770 dst_rgb565 += dst_stride_rgb565;
793 uint8* dst_rgb565, int dst_stride_rgb565,
804 if (!src_y || !src_u || !src_v || !dst_rgb565 ||
811 dst_rgb565 = dst_rgb565
721 I420ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
790 I420ToRGB565Dither(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) argument
[all...]
H A Dplanar_functions.cc1183 uint8* dst_rgb565, int dst_stride_rgb565,
1191 if (!src_y || !src_uv || !dst_rgb565 ||
1198 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
1227 NV12ToRGB565Row(src_y, src_uv, dst_rgb565, &kYuvI601Constants, width);
1228 dst_rgb565 += dst_stride_rgb565;
1181 NV12ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Drow_neon.cc329 uint8* dst_rgb565,
345 "+r"(dst_rgb565), // %3
542 uint8* dst_rgb565,
557 "+r"(dst_rgb565), // %2
1195 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int width) { argument
1206 "+r"(dst_rgb565), // %1
326 I422ToRGB565Row_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
540 NV12ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
H A Drow_neon64.cc322 uint8* dst_rgb565,
338 "+r"(dst_rgb565), // %3
536 uint8* dst_rgb565,
551 "+r"(dst_rgb565), // %2
1201 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int width) { argument
1212 "+r"(dst_rgb565), // %1
319 I422ToRGB565Row_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
534 NV12ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
H A Drow_common.cc1497 uint8* dst_rgb565,
1516 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) |
1521 dst_rgb565 += 4; // Advance 2 pixels.
1528 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
1624 uint8* dst_rgb565,
1643 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) |
1647 dst_rgb565 += 4; // Advance 2 pixels.
1654 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
2419 uint8* dst_rgb565,
2426 ARGBToRGB565Row_SSE2(row, dst_rgb565, twidt
1494 I422ToRGB565Row_C(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
1622 NV12ToRGB565Row_C(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2416 I422ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2481 NV12ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2501 I422ToRGB565Row_AVX2(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2601 NV12ToRGB565Row_AVX2(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
[all...]
/external/libyuv/files/source/
H A Dconvert_from_argb.cc1049 uint8* dst_rgb565,
1058 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) {
1103 ARGBToRGB565DitherRow(src_argb, dst_rgb565,
1107 dst_rgb565 += dst_stride_rgb565;
1117 uint8* dst_rgb565,
1124 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) {
1172 ARGBToRGB565Row(src_argb, dst_rgb565, width);
1174 dst_rgb565 += dst_stride_rgb565;
1047 ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) argument
1115 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Dconvert_from.cc830 uint8* dst_rgb565,
839 if (!src_y || !src_u || !src_v || !dst_rgb565 || width <= 0 || height == 0) {
845 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
882 I422ToRGB565Row(src_y, src_u, src_v, dst_rgb565, &kYuvI601Constants, width);
883 dst_rgb565 += dst_stride_rgb565;
901 uint8* dst_rgb565,
910 if (!src_y || !src_u || !src_v || !dst_rgb565 || width <= 0 || height == 0) {
916 dst_rgb565 = dst_rgb565
824 I420ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
895 I422ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
969 I420ToRGB565Dither(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb565, int dst_stride_rgb565, const uint8* dither4x4, int width, int height) argument
[all...]
H A Dplanar_functions.cc1417 uint8* dst_rgb565,
1425 if (!src_y || !src_uv || !dst_rgb565 || width <= 0 || height == 0) {
1431 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
1468 NV12ToRGB565Row(src_y, src_uv, dst_rgb565, &kYuvI601Constants, width);
1469 dst_rgb565 += dst_stride_rgb565;
1413 NV12ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Drow_neon.cc290 uint8* dst_rgb565,
306 "+r"(dst_rgb565), // %3
499 uint8* dst_rgb565,
514 "+r"(dst_rgb565), // %2
1174 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int width) { argument
1185 "+r"(dst_rgb565), // %1
287 I422ToRGB565Row_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
497 NV12ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
H A Drow_neon64.cc290 uint8* dst_rgb565,
306 "+r"(dst_rgb565), // %3
500 uint8* dst_rgb565,
515 "+r"(dst_rgb565), // %2
1187 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int width) { argument
1198 "+r"(dst_rgb565), // %1
287 I422ToRGB565Row_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
498 NV12ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
H A Drow_common.cc1491 uint8* dst_rgb565,
1510 *(uint32*)(dst_rgb565) =
1515 dst_rgb565 += 4; // Advance 2 pixels.
1522 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
1576 uint8* dst_rgb565,
1595 *(uint32*)(dst_rgb565) =
1599 dst_rgb565 += 4; // Advance 2 pixels.
1606 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
2437 uint8* dst_rgb565,
2444 ARGBToRGB565Row_SSE2(row, dst_rgb565, twidt
1488 I422ToRGB565Row_C(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
1574 NV12ToRGB565Row_C(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2434 I422ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2499 NV12ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2519 I422ToRGB565Row_AVX2(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
2619 NV12ToRGB565Row_AVX2(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument
[all...]
H A Drow_msa.cc526 uint8* dst_rgb565,
552 ST_UB(dst0, dst_rgb565);
556 dst_rgb565 += 16;
523 I422ToRGB565Row_MSA(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, const struct YuvConstants* yuvconstants, int width) argument

Completed in 395 milliseconds