Home | History | Annotate | Download | only in source

Lines Matching refs:src_uv

69 static void HalfRow_SSE2(const uint8* src_uv, int src_uv_stride,
73 mov eax, [esp + 4 + 4] // src_uv
94 static void HalfRow_SSE2(const uint8* src_uv, int src_uv_stride,
106 : "+r"(src_uv), // %0
118 static void HalfRow_C(const uint8* src_uv, int src_uv_stride,
121 dst_uv[x] = (src_uv[x] + src_uv[src_uv_stride + x] + 1) >> 1;
149 void (*HalfRow)(const uint8* src_uv, int src_uv_stride,
402 const uint8* src_uv, int src_stride_uv,
407 if (!src_y || !src_uv ||
425 void (*SplitUV)(const uint8* src_uv, uint8* dst_u, uint8* dst_v, int pix) =
434 IS_ALIGNED(src_uv, 16) && IS_ALIGNED(src_stride_uv, 16) &&
449 SplitUV(src_uv, dst_u, dst_v, halfwidth);
452 src_uv += src_stride_uv;
460 const uint8* src_uv, int src_stride_uv,
466 src_uv, src_stride_uv,
1730 const uint8* src_uv;
1919 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
1921 src_uv, aligned_src_width,
1929 src_uv = sample + aligned_src_width * (src_height + crop_y / 2) + crop_x;
1932 src_uv, aligned_src_width,
1948 src_uv = sample + (src_width + aligned_src_width * 2) * crop_y +
1951 src_uv, src_width * 3,