/external/libyuv/files/source/ |
D | row_neon.cc | 695 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 703 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 731 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToUV422Row_NEON() argument 741 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 773 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_NEON() argument 787 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | row_posix.cc | 2175 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_SSE2() argument 2191 : "+r"(src_yuy2), // %0 in YUY2ToYRow_SSE2() 2202 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_SSE2() argument 2230 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_SSE2() 2242 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_SSE2() argument 2266 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_SSE2() 2278 void YUY2ToYRow_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToYRow_Unaligned_SSE2() argument 2295 : "+r"(src_yuy2), // %0 in YUY2ToYRow_Unaligned_SSE2() 2306 void YUY2ToUVRow_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToUVRow_Unaligned_SSE2() argument 2335 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_Unaligned_SSE2() [all …]
|
D | convert.cc | 492 const uint8* src_yuy2, int src_stride_yuy2, in Q420ToI420() argument 497 if (!src_y || !src_yuy2 || in Q420ToI420() 533 void (*YUY2ToUV422Row)(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in Q420ToI420() 535 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int pix) = in Q420ToI420() 546 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in Q420ToI420() 574 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420() 575 YUY2ToYRow(src_yuy2, dst_y, width); in Q420ToI420() 576 src_yuy2 += src_stride_yuy2; in Q420ToI420() 583 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420() 612 static bool TestReadSafe(const uint8* src_yuy2, int src_stride_yuy2, in TestReadSafe() argument [all …]
|
D | row_common.cc | 747 void YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToUVRow_C() argument 751 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C() 752 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C() 753 src_yuy2 += 4; in YUY2ToUVRow_C() 760 void YUY2ToUV422Row_C(const uint8* src_yuy2, in YUY2ToUV422Row_C() argument 764 dst_u[0] = src_yuy2[1]; in YUY2ToUV422Row_C() 765 dst_v[0] = src_yuy2[3]; in YUY2ToUV422Row_C() 766 src_yuy2 += 4; in YUY2ToUV422Row_C() 773 void YUY2ToYRow_C(const uint8* src_yuy2, uint8* dst_y, int width) { in YUY2ToYRow_C() argument 776 dst_y[x] = src_yuy2[0]; in YUY2ToYRow_C() [all …]
|
D | convert_argb.cc | 676 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToARGB() argument 679 if (!src_yuy2 || !dst_argb || in YUY2ToARGB() 686 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB() 689 void (*YUY2ToUV422Row)(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToARGB() 691 void (*YUY2ToYRow)(const uint8* src_yuy2, in YUY2ToARGB() 702 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in YUY2ToARGB() 752 YUY2ToUV422Row(src_yuy2, rowu, rowv, width); in YUY2ToARGB() 753 YUY2ToYRow(src_yuy2, rowy, width); in YUY2ToARGB() 755 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
|
D | planar_functions.cc | 110 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI422() argument 118 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422() 121 void (*YUY2ToUV422Row)(const uint8* src_yuy2, in YUY2ToI422() 123 void (*YUY2ToYRow)(const uint8* src_yuy2, in YUY2ToI422() 136 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in YUY2ToI422() 160 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in YUY2ToI422() 161 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI422() 162 src_yuy2 += src_stride_yuy2; in YUY2ToI422()
|
D | row_win.cc | 2575 void YUY2ToYRow_SSE2(const uint8* src_yuy2, in YUY2ToYRow_SSE2() argument 2601 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_SSE2() argument 2645 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_SSE2() argument 2682 void YUY2ToYRow_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToYRow_Unaligned_SSE2() argument 2708 void YUY2ToUVRow_Unaligned_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_Unaligned_SSE2() argument 2752 void YUY2ToUV422Row_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_Unaligned_SSE2() argument
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 603 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix); 604 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, 606 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, 608 void YUY2ToYRow_Unaligned_SSE2(const uint8* src_yuy2, 610 void YUY2ToUVRow_Unaligned_SSE2(const uint8* src_yuy2, int stride_yuy2, 612 void YUY2ToUV422Row_Unaligned_SSE2(const uint8* src_yuy2, 614 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix); 615 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, 617 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, 619 void YUY2ToYRow_C(const uint8* src_yuy2, uint8* dst_y, int pix); [all …]
|
D | convert.h | 96 const uint8* src_yuy2, int src_stride_yuy2, 104 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2,
|
D | convert_argb.h | 113 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2,
|
D | planar_functions.h | 41 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2,
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | row_common.cc | 1498 void YUY2ToARGBRow_C(const uint8* src_yuy2, in YUY2ToARGBRow_C() argument 1503 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C() 1506 YuvPixel(src_yuy2[2], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C() 1509 src_yuy2 += 4; in YUY2ToARGBRow_C() 1513 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C() 1727 void YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToUVRow_C() argument 1732 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C() 1733 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C() 1734 src_yuy2 += 4; in YUY2ToUVRow_C() 1741 void YUY2ToUV422Row_C(const uint8* src_yuy2, in YUY2ToUV422Row_C() argument [all …]
|
D | row_neon64.cc | 675 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, in YUY2ToARGBRow_NEON() argument 689 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 1119 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 1128 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 1157 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToUV422Row_NEON() argument 1169 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1203 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_NEON() argument 1205 const uint8* src_yuy2b = src_yuy2 + stride_yuy2; in YUY2ToUVRow_NEON() 1220 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | row_neon.cc | 701 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, in YUY2ToARGBRow_NEON() argument 715 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 1118 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 1128 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 1154 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToUV422Row_NEON() argument 1167 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1198 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_NEON() argument 1216 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | convert.cc | 386 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() argument 392 void (*YUY2ToUVRow)(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() 394 void (*YUY2ToYRow)(const uint8* src_yuy2, in YUY2ToI420() 399 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420() 434 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420() 435 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420() 436 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width); in YUY2ToI420() 437 src_yuy2 += src_stride_yuy2 * 2; in YUY2ToI420() 443 YUY2ToUVRow(src_yuy2, 0, dst_u, dst_v, width); in YUY2ToI420() 444 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420()
|
D | planar_functions.cc | 283 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI422() argument 289 void (*YUY2ToUV422Row)(const uint8* src_yuy2, in YUY2ToI422() 292 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int pix) = in YUY2ToI422() 297 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422() 343 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in YUY2ToI422() 344 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI422() 345 src_yuy2 += src_stride_yuy2; in YUY2ToI422() 2345 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToNV12() argument 2356 if (!src_yuy2 || in YUY2ToNV12() 2364 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToNV12() [all …]
|
D | convert_argb.cc | 894 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToARGB() argument 898 void (*YUY2ToARGBRow)(const uint8* src_yuy2, uint8* dst_argb, int pix) = in YUY2ToARGB() 900 if (!src_yuy2 || !dst_argb || in YUY2ToARGB() 907 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB() 942 YUY2ToARGBRow(src_yuy2, dst_argb, width); in YUY2ToARGB() 943 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
|
D | row_gcc.cc | 2820 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_SSE2() argument 2836 : "+r"(src_yuy2), // %0 in YUY2ToYRow_SSE2() 2845 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_SSE2() argument 2873 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_SSE2() 2883 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_SSE2() argument 2907 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_SSE2() 3014 void YUY2ToYRow_AVX2(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_AVX2() argument 3032 : "+r"(src_yuy2), // %0 in YUY2ToYRow_AVX2() 3041 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_AVX2() argument 3070 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_AVX2() [all …]
|
D | row_x86.asm | 22 ; void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix) 25 cglobal %1ToYRow%3, 3, 3, 3, src_yuy2, dst_y, pix
|
D | row_win.cc | 3582 void YUY2ToYRow_AVX2(const uint8* src_yuy2, in YUY2ToYRow_AVX2() argument 3609 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_AVX2() argument 3653 void YUY2ToUV422Row_AVX2(const uint8* src_yuy2, in YUY2ToUV422Row_AVX2() argument 3802 void YUY2ToYRow_SSE2(const uint8* src_yuy2, in YUY2ToYRow_SSE2() argument 3827 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_SSE2() argument 3870 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_SSE2() argument
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 572 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, 977 void YUY2ToARGBRow_C(const uint8* src_yuy2, 1105 void YUY2ToARGBRow_SSSE3(const uint8* src_yuy2, 1111 void YUY2ToARGBRow_AVX2(const uint8* src_yuy2, 1269 void YUY2ToARGBRow_Any_SSSE3(const uint8* src_yuy2, 1275 void YUY2ToARGBRow_Any_AVX2(const uint8* src_yuy2, 1519 void YUY2ToARGBRow_Any_NEON(const uint8* src_yuy2, 1556 void YUY2ToYRow_AVX2(const uint8* src_yuy2, uint8* dst_y, int pix); 1557 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2, 1559 void YUY2ToUV422Row_AVX2(const uint8* src_yuy2, [all …]
|
D | planar_functions.h | 74 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, 89 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2,
|
D | convert_argb.h | 108 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2,
|
D | convert.h | 96 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2,
|