Lines Matching refs:src_argb0
854 int ARGBBlend(const uint8* src_argb0, in ARGBBlend() argument
865 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBBlend()
883 ARGBBlendRow(src_argb0, src_argb1, dst_argb, width); in ARGBBlend()
884 src_argb0 += src_stride_argb0; in ARGBBlend()
1079 int ARGBMultiply(const uint8* src_argb0, in ARGBMultiply() argument
1090 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBMultiply()
1141 ARGBMultiplyRow(src_argb0, src_argb1, dst_argb, width); in ARGBMultiply()
1142 src_argb0 += src_stride_argb0; in ARGBMultiply()
1151 int ARGBAdd(const uint8* src_argb0, in ARGBAdd() argument
1162 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBAdd()
1218 ARGBAddRow(src_argb0, src_argb1, dst_argb, width); in ARGBAdd()
1219 src_argb0 += src_stride_argb0; in ARGBAdd()
1228 int ARGBSubtract(const uint8* src_argb0, in ARGBSubtract() argument
1239 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBSubtract()
1290 ARGBSubtractRow(src_argb0, src_argb1, dst_argb, width); in ARGBSubtract()
1291 src_argb0 += src_stride_argb0; in ARGBSubtract()
2421 int ARGBInterpolate(const uint8* src_argb0, in ARGBInterpolate() argument
2430 return InterpolatePlane(src_argb0, src_stride_argb0, src_argb1, in ARGBInterpolate()