Lines Matching refs:dst_a
224 uint8_t* dst_a, in TransposeUV() argument
232 void (*TransposeUVWx16)(const uint8_t* src, int src_stride, uint8_t* dst_a, in TransposeUV()
236 void (*TransposeUVWx8)(const uint8_t* src, int src_stride, uint8_t* dst_a, in TransposeUV()
273 TransposeUVWx16(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, in TransposeUV()
276 dst_a += 16; // Move over 8 columns. in TransposeUV()
283 TransposeUVWx8(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, in TransposeUV()
286 dst_a += 8; // Move over 8 columns. in TransposeUV()
293 TransposeUVWxH_C(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, in TransposeUV()
301 uint8_t* dst_a, in RotateUV90() argument
310 TransposeUV(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, width, in RotateUV90()
317 uint8_t* dst_a, in RotateUV270() argument
323 dst_a += dst_stride_a * (width - 1); in RotateUV270()
328 TransposeUV(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, width, in RotateUV270()
336 uint8_t* dst_a, in RotateUV180() argument
366 dst_a += dst_stride_a * (height - 1); in RotateUV180()
370 MirrorUVRow(src, dst_a, dst_b, width); in RotateUV180()
372 dst_a -= dst_stride_a; in RotateUV180()