Lines Matching refs:dst
31 /* src[] must be monotonic in Y. This routine copies src into dst, and sorts
35 static bool sort_increasing_Y(SkPoint dst[], const SkPoint src[], int count) {
39 dst[i] = src[count - i - 1];
43 memcpy(dst, src, count * sizeof(SkPoint));
275 static void chop_mono_cubic_at_y(SkPoint src[4], SkScalar y, SkPoint dst[7]) {
276 if (SkChopMonoCubicAtY(src, y, dst)) {
279 SkChopCubicAt(src, dst, mono_cubic_closestT(&src->fY, y));
329 static void chop_mono_cubic_at_x(SkPoint src[4], SkScalar x, SkPoint dst[7]) {
330 if (SkChopMonoCubicAtX(src, x, dst)) {
333 SkChopCubicAt(src, dst, mono_cubic_closestT(&src->fX, x));