/external/chromium_org/third_party/libyuv/source/ |
D | convert_from_argb.cc | 251 uint8* dst_uv, int dst_stride_uv, in ARGBToNV12() argument 254 !dst_y || !dst_uv || in ARGBToNV12() 298 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in ARGBToNV12() 305 if (IS_ALIGNED(dst_uv, 16) && IS_ALIGNED(dst_stride_uv, 16)) { in ARGBToNV12() 334 MergeUVRow_(row_u, row_v, dst_uv, halfwidth); in ARGBToNV12() 339 dst_uv += dst_stride_uv; in ARGBToNV12() 343 MergeUVRow_(row_u, row_v, dst_uv, halfwidth); in ARGBToNV12() 354 uint8* dst_uv, int dst_stride_uv, in ARGBToNV21() argument 357 !dst_y || !dst_uv || in ARGBToNV21() 401 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in ARGBToNV21() [all …]
|
D | convert_from.cc | 360 uint8* dst_uv, int dst_stride_uv, in I420ToNV12() argument 362 if (!src_y || !src_u || !src_v || !dst_y || !dst_uv || in I420ToNV12() 371 dst_uv = dst_uv + (halfheight - 1) * dst_stride_uv; in I420ToNV12() 392 void (*MergeUVRow_)(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in I420ToNV12() 401 IS_ALIGNED(dst_uv, 16) && IS_ALIGNED(dst_stride_uv, 16)) { in I420ToNV12() 427 MergeUVRow_(src_u, src_v, dst_uv, halfwidth); in I420ToNV12() 430 dst_uv += dst_stride_uv; in I420ToNV12() 1082 uint8* dst_uv = dst_sample + width * height; in ConvertFromI420() local 1088 dst_uv, in ConvertFromI420()
|
D | row_x86.asm | 109 ; void MergeUVRow_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 113 cglobal MergeUVRow_%2, 4, 4, 3, src_u, src_v, dst_uv, pix
|
D | row_neon.cc | 731 void MergeUVRow_NEON(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in MergeUVRow_NEON() argument 744 "+r"(dst_uv), // %2 in MergeUVRow_NEON() 1156 uint8* dst_uv, int pix) { in HalfRow_NEON() argument 1169 "+r"(dst_uv), // %2 in HalfRow_NEON()
|
D | row_any.cc | 410 uint8* dst_uv, int width) { \ 412 ANYTOUV_SIMD(src_u, src_v, dst_uv, n); \ 415 dst_uv + n * 2, \
|
D | row_common.cc | 1548 void MergeUVRow_C(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in MergeUVRow_C() argument 1552 dst_uv[0] = src_u[x]; in MergeUVRow_C() 1553 dst_uv[1] = src_v[x]; in MergeUVRow_C() 1554 dst_uv[2] = src_u[x + 1]; in MergeUVRow_C() 1555 dst_uv[3] = src_v[x + 1]; in MergeUVRow_C() 1556 dst_uv += 4; in MergeUVRow_C() 1559 dst_uv[0] = src_u[width - 1]; in MergeUVRow_C() 1560 dst_uv[1] = src_v[width - 1]; in MergeUVRow_C() 1890 uint8* dst_uv, int pix) { in HalfRow_C() argument 1893 dst_uv[x] = (src_uv[x] + src_uv[src_uv_stride + x] + 1) >> 1; in HalfRow_C() [all …]
|
D | row_posix.cc | 3179 void MergeUVRow_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in MergeUVRow_SSE2() argument 3198 "+r"(dst_uv), // %2 in MergeUVRow_SSE2() 3212 uint8* dst_uv, int width) { in MergeUVRow_Unaligned_SSE2() argument 3230 "+r"(dst_uv), // %2 in MergeUVRow_Unaligned_SSE2() 5793 uint8* dst_uv, int pix) { in HalfRow_SSE2() argument 5805 "+r"(dst_uv), // %1 in HalfRow_SSE2()
|
D | row_win.cc | 3454 void MergeUVRow_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in MergeUVRow_SSE2() argument 3485 uint8* dst_uv, int width) { in MergeUVRow_Unaligned_SSE2() argument 3516 void MergeUVRow_AVX2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, in MergeUVRow_AVX2() argument 6620 uint8* dst_uv, int pix) { in HalfRow_SSE2() argument 6645 uint8* dst_uv, int pix) { in HalfRow_AVX2() argument
|
/external/chromium_org/third_party/libyuv/include/libyuv/ |
D | row.h | 753 void MergeUVRow_C(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 755 void MergeUVRow_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 757 void MergeUVRow_AVX2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 759 void MergeUVRow_NEON(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 762 uint8* dst_uv, int width); 763 void MergeUVRow_Any_SSE2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 765 void MergeUVRow_Any_AVX2(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 767 void MergeUVRow_Any_NEON(const uint8* src_u, const uint8* src_v, uint8* dst_uv, 1456 uint8* dst_uv, int pix); 1458 uint8* dst_uv, int pix); [all …]
|
D | convert_from_argb.h | 134 uint8* dst_uv, int dst_stride_uv,
|
D | convert_from.h | 67 uint8* dst_uv, int dst_stride_uv,
|
/external/chromium_org/content/common/gpu/media/ |
D | android_video_encode_accelerator.cc | 303 uint8* dst_uv = buffer + frame->stride(VideoFrame::kYPlane) * in QueueInput() local 316 dst_uv, in QueueInput()
|
/external/libyuv/files/source/ |
D | convert.cc | 70 uint8* dst_uv, int pix) { in HalfRow_SSE2() argument 95 uint8* dst_uv, int pix) { in HalfRow_SSE2() argument 107 "+r"(dst_uv), // %1 in HalfRow_SSE2() 119 uint8* dst_uv, int pix) { in HalfRow_C() argument 121 dst_uv[x] = (src_uv[x] + src_uv[src_uv_stride + x] + 1) >> 1; in HalfRow_C() 150 uint8* dst_uv, int pix) = HalfRow_C; in I422ToI420()
|