Home
last modified time | relevance | path

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

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc836 uint8* dst_argb1555, int dst_stride_argb1555, in I420ToARGB1555() argument
844 if (!src_y || !src_u || !src_v || !dst_argb1555 || in I420ToARGB1555()
851 dst_argb1555 = dst_argb1555 + (height - 1) * dst_stride_argb1555; in I420ToARGB1555()
880 I422ToARGB1555Row(src_y, src_u, src_v, dst_argb1555, width); in I420ToARGB1555()
881 dst_argb1555 += dst_stride_argb1555; in I420ToARGB1555()
Drow_neon.cc471 uint8* dst_argb1555, in I422ToARGB1555Row_NEON() argument
488 "+r"(dst_argb1555), // %3 in I422ToARGB1555Row_NEON()
1374 void ARGBToARGB1555Row_NEON(const uint8* src_argb, uint8* dst_argb1555, in ARGBToARGB1555Row_NEON() argument
1387 "+r"(dst_argb1555), // %1 in ARGBToARGB1555Row_NEON()
Drow_neon64.cc449 uint8* dst_argb1555, in I422ToARGB1555Row_NEON() argument
465 "+r"(dst_argb1555), // %3 in I422ToARGB1555Row_NEON()
1390 void ARGBToARGB1555Row_NEON(const uint8* src_argb, uint8* dst_argb1555, in ARGBToARGB1555Row_NEON() argument
1402 "+r"(dst_argb1555), // %1 in ARGBToARGB1555Row_NEON()
Dconvert_from_argb.cc977 uint8* dst_argb1555, int dst_stride_argb1555, in ARGBToARGB1555() argument
982 if (!src_argb || !dst_argb1555 || width <= 0 || height == 0) { in ARGBToARGB1555()
1023 ARGBToARGB1555Row(src_argb, dst_argb1555, width); in ARGBToARGB1555()
1025 dst_argb1555 += dst_stride_argb1555; in ARGBToARGB1555()
Drow_common.cc1267 uint8* dst_argb1555, in I422ToARGB1555Row_C() argument
1285 *(uint32*)(dst_argb1555) = b0 | (g0 << 5) | (r0 << 10) | in I422ToARGB1555Row_C()
1290 dst_argb1555 += 4; // Advance 2 pixels. in I422ToARGB1555Row_C()
1297 *(uint16*)(dst_argb1555) = b0 | (g0 << 5) | (r0 << 10) | in I422ToARGB1555Row_C()
2188 uint8* dst_argb1555, in I422ToARGB1555Row_SSSE3() argument
2195 ARGBToARGB1555Row_SSE2(row, dst_argb1555, twidth); in I422ToARGB1555Row_SSSE3()
2199 dst_argb1555 += twidth * 2; in I422ToARGB1555Row_SSSE3()
2320 uint8* dst_argb1555, in I422ToARGB1555Row_AVX2() argument
2327 ARGBToARGB1555Row_AVX2(row, dst_argb1555, twidth); in I422ToARGB1555Row_AVX2()
2331 dst_argb1555 += twidth * 2; in I422ToARGB1555Row_AVX2()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h77 uint8* dst_argb1555, int dst_stride_argb1555,
Drow.h549 uint8* dst_argb1555,
/external/libyuv/files/source/
Dplanar_functions.cc756 uint8* dst_argb1555, int dst_stride_argb1555, in ARGBToARGB1555() argument
758 if (!src_argb || !dst_argb1555 || width <= 0 || height == 0) { in ARGBToARGB1555()
781 ARGBToARGB1555Row(src_argb, dst_argb1555, width); in ARGBToARGB1555()
783 dst_argb1555 += dst_stride_argb1555; in ARGBToARGB1555()
/external/libyuv/files/include/libyuv/
Dplanar_functions.h123 uint8* dst_argb1555, int dst_stride_argb1555,