Home | History | Annotate | Download | only in source

Lines Matching defs:dst

31   void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C;
82 void (*MirrorRow)(const uint8* src, uint8* dst, int width) = MirrorRow_C;
282 void (*ARGBMirrorRow)(const uint8* src, uint8* dst, int width) =
925 void (*SetRow)(uint8* dst, uint32 value, int pix) = SetRow8_C;
986 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
989 IS_ALIGNED(dst, 16) && IS_ALIGNED(dst_stride_argb, 16)) {
990 SetRows32_NEON(dst, value, width, dst_stride_argb, height);
996 SetRows32_X86(dst, value, width, dst_stride_argb, height);
1000 SetRows32_C(dst, value, width, dst_stride_argb, height);
1132 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
1134 ARGBGrayRow(dst, dst, width);
1135 dst += dst_stride_argb;
1154 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
1156 ARGBSepiaRow(dst, width);
1157 dst += dst_stride_argb;
1179 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
1181 ARGBColorMatrixRow(dst, matrix_argb, width);
1182 dst += dst_stride_argb;
1204 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
1206 ARGBColorTableRow(dst, table_argb, width);
1207 dst += dst_stride_argb;
1235 uint8* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
1237 ARGBQuantizeRow(dst, scale, interval_size, interval_offset, width);
1238 dst += dst_stride_argb;
1285 int width, int area, uint8* dst, int count) = CumulativeSumToAverage_C;