Home
last modified time | relevance | path

Searched refs:dst_rgb565 (Results 1 – 11 of 11) sorted by relevance

/external/libyuv/files/source/
Dplanar_functions.cc721 uint8* dst_rgb565, int dst_stride_rgb565, in ARGBToRGB565() argument
723 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) { in ARGBToRGB565()
746 ARGBToRGB565Row(src_argb, dst_rgb565, width); in ARGBToRGB565()
748 dst_rgb565 += dst_stride_rgb565; in ARGBToRGB565()
828 uint8* dst_rgb565, int dst_stride_rgb565, in NV12ToRGB565() argument
830 if (!src_y || !src_uv || !dst_rgb565 || width <= 0 || height == 0) { in NV12ToRGB565()
836 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in NV12ToRGB565()
865 ARGBToRGB565Row(row, dst_rgb565, width); in NV12ToRGB565()
866 dst_rgb565 += dst_stride_rgb565; in NV12ToRGB565()
879 uint8* dst_rgb565, int dst_stride_rgb565, in NV21ToRGB565() argument
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc957 uint8* dst_rgb565, int dst_stride_rgb565, in I420ToRGB565() argument
965 if (!src_y || !src_u || !src_v || !dst_rgb565 || in I420ToRGB565()
972 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in I420ToRGB565()
1001 I422ToRGB565Row(src_y, src_u, src_v, dst_rgb565, width); in I420ToRGB565()
1002 dst_rgb565 += dst_stride_rgb565; in I420ToRGB565()
1025 uint8* dst_rgb565, int dst_stride_rgb565, in I420ToRGB565Dither() argument
1035 if (!src_y || !src_u || !src_v || !dst_rgb565 || in I420ToRGB565Dither()
1042 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in I420ToRGB565Dither()
1109 ARGBToRGB565DitherRow(row_argb, dst_rgb565, in I420ToRGB565Dither()
1111 dst_rgb565 += dst_stride_rgb565; in I420ToRGB565Dither()
Drow_common.cc1305 uint8* dst_rgb565, in I422ToRGB565Row_C() argument
1323 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) | in I422ToRGB565Row_C()
1328 dst_rgb565 += 4; // Advance 2 pixels. in I422ToRGB565Row_C()
1335 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11); in I422ToRGB565Row_C()
1430 uint8* dst_rgb565, in NV12ToRGB565Row_C() argument
1448 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) | in NV12ToRGB565Row_C()
1452 dst_rgb565 += 4; // Advance 2 pixels. in NV12ToRGB565Row_C()
1459 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11); in NV12ToRGB565Row_C()
1465 uint8* dst_rgb565, in NV21ToRGB565Row_C() argument
1483 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) | in NV21ToRGB565Row_C()
[all …]
Drow_neon.cc426 uint8* dst_rgb565, in I422ToRGB565Row_NEON() argument
442 "+r"(dst_rgb565), // %3 in I422ToRGB565Row_NEON()
647 uint8* dst_rgb565, in NV12ToRGB565Row_NEON() argument
662 "+r"(dst_rgb565), // %2 in NV12ToRGB565Row_NEON()
675 uint8* dst_rgb565, in NV21ToRGB565Row_NEON() argument
690 "+r"(dst_rgb565), // %2 in NV21ToRGB565Row_NEON()
1331 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { in ARGBToRGB565Row_NEON() argument
1343 "+r"(dst_rgb565), // %1 in ARGBToRGB565Row_NEON()
Drow_neon64.cc411 uint8* dst_rgb565, in I422ToRGB565Row_NEON() argument
426 "+r"(dst_rgb565), // %3 in I422ToRGB565Row_NEON()
623 uint8* dst_rgb565, in NV12ToRGB565Row_NEON() argument
637 "+r"(dst_rgb565), // %2 in NV12ToRGB565Row_NEON()
650 uint8* dst_rgb565, in NV21ToRGB565Row_NEON() argument
664 "+r"(dst_rgb565), // %2 in NV21ToRGB565Row_NEON()
1345 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { in ARGBToRGB565Row_NEON() argument
1356 "+r"(dst_rgb565), // %1 in ARGBToRGB565Row_NEON()
Dconvert_from_argb.cc868 uint8* dst_rgb565, int dst_stride_rgb565, in ARGBToRGB565Dither() argument
873 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) { in ARGBToRGB565Dither()
909 ARGBToRGB565DitherRow(src_argb, dst_rgb565, in ARGBToRGB565Dither()
912 dst_rgb565 += dst_stride_rgb565; in ARGBToRGB565Dither()
921 uint8* dst_rgb565, int dst_stride_rgb565, in ARGBToRGB565() argument
926 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) { in ARGBToRGB565()
967 ARGBToRGB565Row(src_argb, dst_rgb565, width); in ARGBToRGB565()
969 dst_rgb565 += dst_stride_rgb565; in ARGBToRGB565()
Dplanar_functions.cc998 uint8* dst_rgb565, int dst_stride_rgb565, in NV12ToRGB565() argument
1005 if (!src_y || !src_uv || !dst_rgb565 || in NV12ToRGB565()
1012 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in NV12ToRGB565()
1041 NV12ToRGB565Row(src_y, src_uv, dst_rgb565, width); in NV12ToRGB565()
1042 dst_rgb565 += dst_stride_rgb565; in NV12ToRGB565()
1055 uint8* dst_rgb565, int dst_stride_rgb565, in NV21ToRGB565() argument
1062 if (!src_y || !src_vu || !dst_rgb565 || in NV21ToRGB565()
1069 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in NV21ToRGB565()
1098 NV21ToRGB565Row(src_y, src_vu, dst_rgb565, width); in NV21ToRGB565()
1099 dst_rgb565 += dst_stride_rgb565; in NV21ToRGB565()
/external/libyuv/files/include/libyuv/
Dplanar_functions.h82 uint8* dst_rgb565, int dst_stride_rgb565,
89 uint8* dst_rgb565, int dst_stride_rgb565,
117 uint8* dst_rgb565, int dst_stride_rgb565,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h61 uint8* dst_rgb565, int dst_stride_rgb565,
71 uint8* dst_rgb565, int dst_stride_rgb565,
Dplanar_functions.h145 uint8* dst_rgb565, int dst_stride_rgb565,
152 uint8* dst_rgb565, int dst_stride_rgb565,
Drow.h544 uint8* dst_rgb565,
566 uint8* dst_rgb565,
570 uint8* dst_rgb565,
1026 uint8* dst_rgb565,