Lines Matching refs:dst_a
229 uint8* dst_a, in TransposeUV() argument
237 void (*TransposeUVWx16)(const uint8* src, int src_stride, uint8* dst_a, in TransposeUV()
241 void (*TransposeUVWx8)(const uint8* src, int src_stride, uint8* dst_a, in TransposeUV()
276 TransposeUVWx16(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, in TransposeUV()
279 dst_a += 16; // Move over 8 columns. in TransposeUV()
286 TransposeUVWx8(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, in TransposeUV()
289 dst_a += 8; // Move over 8 columns. in TransposeUV()
296 TransposeUVWxH_C(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, in TransposeUV()
304 uint8* dst_a, in RotateUV90() argument
313 TransposeUV(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, width, in RotateUV90()
320 uint8* dst_a, in RotateUV270() argument
326 dst_a += dst_stride_a * (width - 1); in RotateUV270()
331 TransposeUV(src, src_stride, dst_a, dst_stride_a, dst_b, dst_stride_b, width, in RotateUV270()
339 uint8* dst_a, in RotateUV180() argument
365 dst_a += dst_stride_a * (height - 1); in RotateUV180()
369 MirrorUVRow(src, dst_a, dst_b, width); in RotateUV180()
371 dst_a -= dst_stride_a; in RotateUV180()