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.cc897 uint8* dst_argb4444, int dst_stride_argb4444, in I420ToARGB4444() argument
905 if (!src_y || !src_u || !src_v || !dst_argb4444 || in I420ToARGB4444()
912 dst_argb4444 = dst_argb4444 + (height - 1) * dst_stride_argb4444; in I420ToARGB4444()
941 I422ToARGB4444Row(src_y, src_u, src_v, dst_argb4444, width); in I420ToARGB4444()
942 dst_argb4444 += dst_stride_argb4444; in I420ToARGB4444()
Drow_neon.cc511 uint8* dst_argb4444, in I422ToARGB4444Row_NEON() argument
529 "+r"(dst_argb4444), // %3 in I422ToARGB4444Row_NEON()
1394 void ARGBToARGB4444Row_NEON(const uint8* src_argb, uint8* dst_argb4444, in ARGBToARGB4444Row_NEON() argument
1408 "+r"(dst_argb4444), // %1 in ARGBToARGB4444Row_NEON()
Drow_neon64.cc489 uint8* dst_argb4444, in I422ToARGB4444Row_NEON() argument
506 "+r"(dst_argb4444), // %3 in I422ToARGB4444Row_NEON()
1411 void ARGBToARGB4444Row_NEON(const uint8* src_argb, uint8* dst_argb4444, in ARGBToARGB4444Row_NEON() argument
1424 "+r"(dst_argb4444), // %1 in ARGBToARGB4444Row_NEON()
Dconvert_from_argb.cc1033 uint8* dst_argb4444, int dst_stride_argb4444, in ARGBToARGB4444() argument
1038 if (!src_argb || !dst_argb4444 || width <= 0 || height == 0) { in ARGBToARGB4444()
1079 ARGBToARGB4444Row(src_argb, dst_argb4444, width); in ARGBToARGB4444()
1081 dst_argb4444 += dst_stride_argb4444; in ARGBToARGB4444()
Drow_common.cc1229 uint8* dst_argb4444, in I422ToARGB4444Row_C() argument
1247 *(uint32*)(dst_argb4444) = b0 | (g0 << 4) | (r0 << 8) | in I422ToARGB4444Row_C()
1252 dst_argb4444 += 4; // Advance 2 pixels. in I422ToARGB4444Row_C()
1259 *(uint16*)(dst_argb4444) = b0 | (g0 << 4) | (r0 << 8) | in I422ToARGB4444Row_C()
2209 uint8* dst_argb4444, in I422ToARGB4444Row_SSSE3() argument
2216 ARGBToARGB4444Row_SSE2(row, dst_argb4444, twidth); in I422ToARGB4444Row_SSSE3()
2220 dst_argb4444 += twidth * 2; in I422ToARGB4444Row_SSSE3()
2341 uint8* dst_argb4444, in I422ToARGB4444Row_AVX2() argument
2348 ARGBToARGB4444Row_AVX2(row, dst_argb4444, twidth); in I422ToARGB4444Row_AVX2()
2352 dst_argb4444 += twidth * 2; in I422ToARGB4444Row_AVX2()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h83 uint8* dst_argb4444, int dst_stride_argb4444,
Drow.h554 uint8* dst_argb4444,
1016 uint8* dst_argb4444,
1021 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,