• Home
  • Raw
  • Download

Lines Matching refs:dst_argb

26                           uint8_t* dst_argb,  in ARGBTranspose()  argument
34 uint8_t* dst_argb, int dst_width) = ScaleARGBRowDownEven_C; in ARGBTranspose()
69 ScaleARGBRowDownEven(src_argb, 0, src_pixel_step, dst_argb, height); in ARGBTranspose()
70 dst_argb += dst_stride_argb; in ARGBTranspose()
77 uint8_t* dst_argb, in ARGBRotate90() argument
86 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate90()
92 uint8_t* dst_argb, in ARGBRotate270() argument
99 dst_argb += dst_stride_argb * (width - 1); in ARGBRotate270()
101 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate270()
107 uint8_t* dst_argb, in ARGBRotate180() argument
114 uint8_t* dst_bot = dst_argb + dst_stride_argb * (height - 1); in ARGBRotate180()
117 void (*ARGBMirrorRow)(const uint8_t* src_argb, uint8_t* dst_argb, int width) = in ARGBRotate180()
119 void (*CopyRow)(const uint8_t* src_argb, uint8_t* dst_argb, int width) = in ARGBRotate180()
185 ARGBMirrorRow(src_bot, dst_argb, width); // Mirror last row into first row in ARGBRotate180()
188 dst_argb += dst_stride_argb; in ARGBRotate180()
198 uint8_t* dst_argb, in ARGBRotate() argument
203 if (!src_argb || width <= 0 || height == 0 || !dst_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()