/external/libyuv/files/source/ |
D | planar_functions.cc | 721 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/ |
D | convert_from.cc | 957 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()
|
D | row_common.cc | 1305 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 …]
|
D | row_neon.cc | 426 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()
|
D | row_neon64.cc | 411 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()
|
D | convert_from_argb.cc | 868 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()
|
D | planar_functions.cc | 998 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/ |
D | planar_functions.h | 82 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/ |
D | convert_from_argb.h | 61 uint8* dst_rgb565, int dst_stride_rgb565, 71 uint8* dst_rgb565, int dst_stride_rgb565,
|
D | planar_functions.h | 145 uint8* dst_rgb565, int dst_stride_rgb565, 152 uint8* dst_rgb565, int dst_stride_rgb565,
|
D | row.h | 544 uint8* dst_rgb565, 566 uint8* dst_rgb565, 570 uint8* dst_rgb565, 1026 uint8* dst_rgb565,
|