Home
last modified time | relevance | path

Searched refs:dst_argb4444 (Results 1 – 9 of 9) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc856 uint8* dst_argb4444, int dst_stride_argb4444, in I420ToARGB4444() argument
864 if (!src_y || !src_u || !src_v || !dst_argb4444 || in I420ToARGB4444()
871 dst_argb4444 = dst_argb4444 + (height - 1) * dst_stride_argb4444; in I420ToARGB4444()
891 I422ToARGB4444Row(src_y, src_u, src_v, dst_argb4444, width); in I420ToARGB4444()
892 dst_argb4444 += dst_stride_argb4444; in I420ToARGB4444()
Drow_neon.cc507 uint8* dst_argb4444, in I422ToARGB4444Row_NEON() argument
531 "+r"(dst_argb4444), // %3 in I422ToARGB4444Row_NEON()
1458 void ARGBToARGB4444Row_NEON(const uint8* src_argb, uint8* dst_argb4444, in ARGBToARGB4444Row_NEON() argument
1472 "+r"(dst_argb4444), // %1 in ARGBToARGB4444Row_NEON()
Drow_neon64.cc528 uint8* dst_argb4444, in I422ToARGB4444Row_NEON() argument
552 "+r"(dst_argb4444), // %3 in I422ToARGB4444Row_NEON()
1555 void ARGBToARGB4444Row_NEON(const uint8* src_argb, uint8* dst_argb4444, in ARGBToARGB4444Row_NEON() argument
1569 "+r"(dst_argb4444), // %1 in ARGBToARGB4444Row_NEON()
Dconvert_from_argb.cc927 uint8* dst_argb4444, int dst_stride_argb4444, in ARGBToARGB4444() argument
932 if (!src_argb || !dst_argb4444 || width <= 0 || height == 0) { in ARGBToARGB4444()
965 ARGBToARGB4444Row(src_argb, dst_argb4444, width); in ARGBToARGB4444()
967 dst_argb4444 += dst_stride_argb4444; in ARGBToARGB4444()
Drow_common.cc1084 uint8* dst_argb4444, in I422ToARGB4444Row_C() argument
1102 *(uint32*)(dst_argb4444) = b0 | (g0 << 4) | (r0 << 8) | in I422ToARGB4444Row_C()
1107 dst_argb4444 += 4; // Advance 2 pixels. in I422ToARGB4444Row_C()
1114 *(uint16*)(dst_argb4444) = b0 | (g0 << 4) | (r0 << 8) | in I422ToARGB4444Row_C()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h73 uint8* dst_argb4444, int dst_stride_argb4444,
Drow.h530 uint8* dst_argb4444,
975 uint8* dst_argb4444,
980 uint8* dst_argb4444,
/external/libyuv/files/source/
Dplanar_functions.cc791 uint8* dst_argb4444, int dst_stride_argb4444, in ARGBToARGB4444() argument
793 if (!src_argb || !dst_argb4444 || width <= 0 || height == 0) { in ARGBToARGB4444()
816 ARGBToARGB4444Row(src_argb, dst_argb4444, width); in ARGBToARGB4444()
818 dst_argb4444 += dst_stride_argb4444; in ARGBToARGB4444()
/external/libyuv/files/include/libyuv/
Dplanar_functions.h129 uint8* dst_argb4444, int dst_stride_argb4444,