Home
last modified time | relevance | path

Searched refs:src_yuy2 (Results 1 – 24 of 24) sorted by relevance

/external/libyuv/files/source/
Drow_neon.cc695 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()
Drow_posix.cc2175 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 …]
Dconvert.cc492 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 …]
Drow_common.cc747 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 …]
Dconvert_argb.cc676 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()
Dplanar_functions.cc110 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()
Drow_win.cc2575 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/
Drow.h603 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 …]
Dconvert.h96 const uint8* src_yuy2, int src_stride_yuy2,
104 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2,
Dconvert_argb.h113 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2,
Dplanar_functions.h41 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2,
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc398 const uint8* src_yuy2, int src_stride_yuy2, in Q420ToI420() argument
406 void (*YUY2ToUV422Row)(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in Q420ToI420()
408 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int pix) = in Q420ToI420()
410 if (!src_y || !src_yuy2 || in Q420ToI420()
462 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in Q420ToI420()
499 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420()
500 YUY2ToYRow(src_yuy2, dst_y, width); in Q420ToI420()
501 src_yuy2 += src_stride_yuy2; in Q420ToI420()
508 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in Q420ToI420()
515 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() argument
[all …]
Drow_common.cc1353 void YUY2ToARGBRow_C(const uint8* src_yuy2, in YUY2ToARGBRow_C() argument
1358 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C()
1361 YuvPixel(src_yuy2[2], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C()
1364 src_yuy2 += 4; in YUY2ToARGBRow_C()
1368 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C()
1598 void YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToUVRow_C() argument
1603 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C()
1604 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C()
1605 src_yuy2 += 4; in YUY2ToUVRow_C()
1612 void YUY2ToUV422Row_C(const uint8* src_yuy2, in YUY2ToUV422Row_C() argument
[all …]
Dconvert_argb.cc831 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToARGB() argument
835 void (*YUY2ToARGBRow)(const uint8* src_yuy2, uint8* dst_argb, int pix) = in YUY2ToARGB()
837 if (!src_yuy2 || !dst_argb || in YUY2ToARGB()
844 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB()
860 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16) && in YUY2ToARGB()
875 YUY2ToARGBRow(src_yuy2, dst_argb, width); in YUY2ToARGB()
876 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
Drow_neon.cc721 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, in YUY2ToARGBRow_NEON() argument
741 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON()
1140 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument
1150 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON()
1176 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToUV422Row_NEON() argument
1189 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON()
1220 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_NEON() argument
1238 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
Drow_neon64.cc756 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, in YUY2ToARGBRow_NEON() argument
776 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON()
1209 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument
1219 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON()
1249 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToUV422Row_NEON() argument
1262 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON()
1297 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_NEON() argument
1315 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
Drow_x86.asm22 ; void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix)
25 cglobal %1ToYRow%3, 3, 3, 3, src_yuy2, dst_y, pix
Drow_posix.cc3470 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_SSE2() argument
3486 : "+r"(src_yuy2), // %0 in YUY2ToYRow_SSE2()
3497 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_SSE2() argument
3527 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_SSE2()
3542 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_SSE2() argument
3567 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_SSE2()
3582 void YUY2ToYRow_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToYRow_Unaligned_SSE2() argument
3599 : "+r"(src_yuy2), // %0 in YUY2ToYRow_Unaligned_SSE2()
3610 void YUY2ToUVRow_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToUVRow_Unaligned_SSE2() argument
3641 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_Unaligned_SSE2()
[all …]
Dplanar_functions.cc274 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI422() argument
280 void (*YUY2ToUV422Row)(const uint8* src_yuy2, in YUY2ToI422()
283 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int pix) = in YUY2ToI422()
288 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422()
307 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in YUY2ToI422()
340 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in YUY2ToI422()
341 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI422()
342 src_yuy2 += src_stride_yuy2; in YUY2ToI422()
Drow_win.cc3913 void YUY2ToYRow_AVX2(const uint8* src_yuy2, in YUY2ToYRow_AVX2() argument
3941 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_AVX2() argument
3986 void YUY2ToUV422Row_AVX2(const uint8* src_yuy2, in YUY2ToUV422Row_AVX2() argument
4139 void YUY2ToYRow_SSE2(const uint8* src_yuy2, in YUY2ToYRow_SSE2() argument
4165 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_SSE2() argument
4209 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_SSE2() argument
4246 void YUY2ToYRow_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToYRow_Unaligned_SSE2() argument
4272 void YUY2ToUVRow_Unaligned_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_Unaligned_SSE2() argument
4316 void YUY2ToUV422Row_Unaligned_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_Unaligned_SSE2() argument
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h548 void YUY2ToARGBRow_NEON(const uint8* src_yuy2,
941 void YUY2ToARGBRow_C(const uint8* src_yuy2,
1026 void YUY2ToARGBRow_SSSE3(const uint8* src_yuy2,
1097 void YUY2ToARGBRow_Unaligned_SSSE3(const uint8* src_yuy2,
1154 void YUY2ToARGBRow_Any_SSSE3(const uint8* src_yuy2,
1357 void YUY2ToARGBRow_Any_NEON(const uint8* src_yuy2,
1394 void YUY2ToYRow_AVX2(const uint8* src_yuy2, uint8* dst_y, int pix);
1395 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2,
1397 void YUY2ToUV422Row_AVX2(const uint8* src_yuy2,
1399 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix);
[all …]
Dconvert.h94 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2,
119 const uint8* src_yuy2, int src_stride_yuy2,
Dconvert_argb.h116 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2,
Dplanar_functions.h73 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2,