Lines Matching refs:dst_u

32                uint8* dst_u, int dst_stride_u,  in I420ToI422()  argument
36 !dst_y || !dst_u || !dst_v || in I420ToI422()
44 dst_u = dst_u + (height - 1) * dst_stride_u; in I420ToI422()
63 IS_ALIGNED(dst_u, 16) && IS_ALIGNED(dst_stride_u, 16) && in I420ToI422()
79 CopyRow(src_u, dst_u, halfwidth); in I420ToI422()
80 CopyRow(src_u, dst_u + dst_stride_u, halfwidth); in I420ToI422()
82 dst_u += dst_stride_u * 2; in I420ToI422()
85 CopyRow(src_u, dst_u, halfwidth); in I420ToI422()
112 uint8* dst_u, int dst_stride_u, in I420ToI444() argument
116 !dst_y || !dst_u || !dst_v || in I420ToI444()
124 dst_u = dst_u + (height - 1) * dst_stride_u; in I420ToI444()
144 src_u, dst_u); in I420ToI444()
162 uint8* dst_u, int dst_stride_u, in I420ToI411() argument
166 !dst_y || !dst_u || !dst_v || in I420ToI411()
174 dst_u = dst_u + (height - 1) * dst_stride_u; in I420ToI411()
195 src_u, dst_u); in I420ToI411()
1342 uint8* dst_u; in ConvertFromI420() local
1346 dst_u = dst_v + halfwidth * halfheight; in ConvertFromI420()
1348 dst_u = dst_sample + width * height; in ConvertFromI420()
1349 dst_v = dst_u + halfwidth * halfheight; in ConvertFromI420()
1355 dst_u, halfwidth, in ConvertFromI420()
1363 uint8* dst_u; in ConvertFromI420() local
1367 dst_u = dst_v + halfwidth * height; in ConvertFromI420()
1369 dst_u = dst_sample + width * height; in ConvertFromI420()
1370 dst_v = dst_u + halfwidth * height; in ConvertFromI420()
1376 dst_u, halfwidth, in ConvertFromI420()
1383 uint8* dst_u; in ConvertFromI420() local
1387 dst_u = dst_v + width * height; in ConvertFromI420()
1389 dst_u = dst_sample + width * height; in ConvertFromI420()
1390 dst_v = dst_u + width * height; in ConvertFromI420()
1396 dst_u, width, in ConvertFromI420()
1403 uint8* dst_u = dst_sample + width * height; in ConvertFromI420() local
1404 uint8* dst_v = dst_u + quarterwidth * height; in ConvertFromI420()
1409 dst_u, quarterwidth, in ConvertFromI420()