Lines Matching refs:dst_stride_argb
27 int dst_stride_argb, in ARGBTranspose() argument
70 dst_argb += dst_stride_argb; in ARGBTranspose()
78 int dst_stride_argb, in ARGBRotate90() argument
86 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate90()
93 int dst_stride_argb, in ARGBRotate270() argument
99 dst_argb += dst_stride_argb * (width - 1); in ARGBRotate270()
100 dst_stride_argb = -dst_stride_argb; in ARGBRotate270()
101 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate270()
108 int dst_stride_argb, in ARGBRotate180() argument
114 uint8_t* dst_bot = dst_argb + dst_stride_argb * (height - 1); in ARGBRotate180()
188 dst_argb += dst_stride_argb; in ARGBRotate180()
190 dst_bot -= dst_stride_argb; in ARGBRotate180()
199 int dst_stride_argb, in ARGBRotate() argument
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()