Lines Matching refs:src_argb1
306 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in GetARGBBlend()
325 const uint8* src_argb1, int src_stride_argb1, in ARGBBlend() argument
328 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBBlend()
337 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in ARGBBlend()
341 ARGBBlendRow(src_argb0, src_argb1, dst_argb, width); in ARGBBlend()
343 src_argb1 += src_stride_argb1; in ARGBBlend()
1392 const uint8* src_argb1, int src_stride_argb1, in ARGBInterpolate() argument
1395 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBInterpolate()
1410 IS_ALIGNED(src_argb1, 16) && IS_ALIGNED(src_stride_argb1, 16) && in ARGBInterpolate()
1416 ARGBInterpolateRow(dst_argb, src_argb0, src_argb1 - src_argb0, in ARGBInterpolate()
1419 src_argb1 += src_stride_argb1; in ARGBInterpolate()