Searched refs:dst_argb1555 (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert_from.cc | 836 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()
|
D | row_neon.cc | 471 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()
|
D | row_neon64.cc | 449 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()
|
D | convert_from_argb.cc | 977 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()
|
D | row_common.cc | 1267 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/ |
D | convert_from_argb.h | 77 uint8* dst_argb1555, int dst_stride_argb1555,
|
D | row.h | 549 uint8* dst_argb1555,
|
/external/libyuv/files/source/ |
D | planar_functions.cc | 756 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/ |
D | planar_functions.h | 123 uint8* dst_argb1555, int dst_stride_argb1555,
|