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.cc804 uint8* dst_argb1555, int dst_stride_argb1555, in I420ToARGB1555() argument
812 if (!src_y || !src_u || !src_v || !dst_argb1555 || in I420ToARGB1555()
819 dst_argb1555 = dst_argb1555 + (height - 1) * dst_stride_argb1555; in I420ToARGB1555()
839 I422ToARGB1555Row(src_y, src_u, src_v, dst_argb1555, width); in I420ToARGB1555()
840 dst_argb1555 += dst_stride_argb1555; in I420ToARGB1555()
Drow_neon.cc463 uint8* dst_argb1555, in I422ToARGB1555Row_NEON() argument
486 "+r"(dst_argb1555), // %3 in I422ToARGB1555Row_NEON()
1438 void ARGBToARGB1555Row_NEON(const uint8* src_argb, uint8* dst_argb1555, in ARGBToARGB1555Row_NEON() argument
1451 "+r"(dst_argb1555), // %1 in ARGBToARGB1555Row_NEON()
Drow_neon64.cc482 uint8* dst_argb1555, in I422ToARGB1555Row_NEON() argument
505 "+r"(dst_argb1555), // %3 in I422ToARGB1555Row_NEON()
1533 void ARGBToARGB1555Row_NEON(const uint8* src_argb, uint8* dst_argb1555, in ARGBToARGB1555Row_NEON() argument
1546 "+r"(dst_argb1555), // %1 in ARGBToARGB1555Row_NEON()
Dconvert_from_argb.cc879 uint8* dst_argb1555, int dst_stride_argb1555, in ARGBToARGB1555() argument
884 if (!src_argb || !dst_argb1555 || width <= 0 || height == 0) { in ARGBToARGB1555()
917 ARGBToARGB1555Row(src_argb, dst_argb1555, width); in ARGBToARGB1555()
919 dst_argb1555 += dst_stride_argb1555; in ARGBToARGB1555()
Drow_common.cc1122 uint8* dst_argb1555, in I422ToARGB1555Row_C() argument
1140 *(uint32*)(dst_argb1555) = b0 | (g0 << 5) | (r0 << 10) | in I422ToARGB1555Row_C()
1145 dst_argb1555 += 4; // Advance 2 pixels. in I422ToARGB1555Row_C()
1152 *(uint16*)(dst_argb1555) = b0 | (g0 << 5) | (r0 << 10) | in I422ToARGB1555Row_C()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h67 uint8* dst_argb1555, int dst_stride_argb1555,
Drow.h525 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,