Lines Matching full:src_stride
28 void ScaleARGBRowDownEven_SSE2(const uint8* src_ptr, int src_stride,
36 static void ARGBTranspose(const uint8* src, int src_stride,
39 void (*ScaleARGBRowDownEven)(const uint8* src_ptr, int src_stride,
49 int src_pixel_step = src_stride / 4;
57 void ARGBRotate90(const uint8* src, int src_stride,
63 src += src_stride * (height - 1);
64 src_stride = -src_stride;
65 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
68 void ARGBRotate270(const uint8* src, int src_stride,
76 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
79 void ARGBRotate180(const uint8* src, int src_stride,
86 IS_ALIGNED(src, 16) && IS_ALIGNED(src_stride, 16) &&
104 IS_ALIGNED(src, 16) && IS_ALIGNED(src_stride, 16) &&
114 const uint8* src_bot = src + src_stride * (height - 1);
120 src += src_stride;
124 src_bot -= src_stride;