Lines Matching refs:src_stride_argb
25 int src_stride_argb, in ARGBTranspose() argument
31 int src_pixel_step = src_stride_argb >> 2; in ARGBTranspose()
33 const uint8_t* src_argb, ptrdiff_t src_stride_argb, int src_step, in ARGBTranspose()
76 int src_stride_argb, in ARGBRotate90() argument
84 src_argb += src_stride_argb * (height - 1); in ARGBRotate90()
85 src_stride_argb = -src_stride_argb; in ARGBRotate90()
86 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate90()
91 int src_stride_argb, in ARGBRotate270() argument
101 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate270()
106 int src_stride_argb, in ARGBRotate180() argument
113 const uint8_t* src_bot = src_argb + src_stride_argb * (height - 1); in ARGBRotate180()
187 src_argb += src_stride_argb; in ARGBRotate180()
189 src_bot -= src_stride_argb; in ARGBRotate180()
197 int src_stride_argb, in ARGBRotate() argument
210 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBRotate()
211 src_stride_argb = -src_stride_argb; in ARGBRotate()
217 return ARGBCopy(src_argb, src_stride_argb, dst_argb, dst_stride_argb, in ARGBRotate()
220 ARGBRotate90(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate()
224 ARGBRotate270(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate()
228 ARGBRotate180(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate()