HomeSort by relevance Sort by last modified time
    Searched refs:interp_cubic_coords (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicSubDivide.cpp 56 static double interp_cubic_coords(const double* src, double t) function
75 double ax = dst[0].x = interp_cubic_coords(&src[0].x, t1);
76 double ay = dst[0].y = interp_cubic_coords(&src[0].y, t1);
77 double ex = interp_cubic_coords(&src[0].x, (t1*2+t2)/3);
78 double ey = interp_cubic_coords(&src[0].y, (t1*2+t2)/3);
79 double fx = interp_cubic_coords(&src[0].x, (t1+t2*2)/3);
80 double fy = interp_cubic_coords(&src[0].y, (t1+t2*2)/3);
81 double dx = dst[3].x = interp_cubic_coords(&src[0].x, t2);
82 double dy = dst[3].y = interp_cubic_coords(&src[0].y, t2);
95 double ex = interp_cubic_coords(&src[0].x, (t1 * 2 + t2) / 3)
110 static void interp_cubic_coords(const double* src, double* dst, double t) function
    [all...]
CubicReduceOrder.cpp 12 static double interp_cubic_coords(const double* src, double t) function
38 double yExtrema = interp_cubic_coords(&cubic[0].y, tValues[index]);
61 double xExtrema = interp_cubic_coords(&cubic[0].x, tValues[index]);
136 extrema.x = interp_cubic_coords(&cubic[0].x, tValues[index]);
137 extrema.y = interp_cubic_coords(&cubic[0].y, tValues[index]);
  /external/skia/experimental/Intersection/
CubicSubDivide.cpp 56 static double interp_cubic_coords(const double* src, double t) function
75 double ax = dst[0].x = interp_cubic_coords(&src[0].x, t1);
76 double ay = dst[0].y = interp_cubic_coords(&src[0].y, t1);
77 double ex = interp_cubic_coords(&src[0].x, (t1*2+t2)/3);
78 double ey = interp_cubic_coords(&src[0].y, (t1*2+t2)/3);
79 double fx = interp_cubic_coords(&src[0].x, (t1+t2*2)/3);
80 double fy = interp_cubic_coords(&src[0].y, (t1+t2*2)/3);
81 double dx = dst[3].x = interp_cubic_coords(&src[0].x, t2);
82 double dy = dst[3].y = interp_cubic_coords(&src[0].y, t2);
95 double ex = interp_cubic_coords(&src[0].x, (t1 * 2 + t2) / 3)
110 static void interp_cubic_coords(const double* src, double* dst, double t) function
    [all...]
CubicReduceOrder.cpp 12 static double interp_cubic_coords(const double* src, double t) function
38 double yExtrema = interp_cubic_coords(&cubic[0].y, tValues[index]);
61 double xExtrema = interp_cubic_coords(&cubic[0].x, tValues[index]);
136 extrema.x = interp_cubic_coords(&cubic[0].x, tValues[index]);
137 extrema.y = interp_cubic_coords(&cubic[0].y, tValues[index]);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 456 static double interp_cubic_coords(const double* src, double t) { function
476 double ax = dst[0].fX = interp_cubic_coords(&fPts[0].fX, t1);
477 double ay = dst[0].fY = interp_cubic_coords(&fPts[0].fY, t1);
478 double ex = interp_cubic_coords(&fPts[0].fX, (t1*2+t2)/3);
479 double ey = interp_cubic_coords(&fPts[0].fY, (t1*2+t2)/3);
480 double fx = interp_cubic_coords(&fPts[0].fX, (t1+t2*2)/3);
481 double fy = interp_cubic_coords(&fPts[0].fY, (t1+t2*2)/3);
482 double dx = dst[3].fX = interp_cubic_coords(&fPts[0].fX, t2);
483 double dy = dst[3].fY = interp_cubic_coords(&fPts[0].fY, t2);
509 double ex = interp_cubic_coords(&fPts[0].fX, (t1 * 2 + t2) / 3)
548 static void interp_cubic_coords(const double* src, double* dst, double t) { function
    [all...]
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 456 static double interp_cubic_coords(const double* src, double t) { function
476 double ax = dst[0].fX = interp_cubic_coords(&fPts[0].fX, t1);
477 double ay = dst[0].fY = interp_cubic_coords(&fPts[0].fY, t1);
478 double ex = interp_cubic_coords(&fPts[0].fX, (t1*2+t2)/3);
479 double ey = interp_cubic_coords(&fPts[0].fY, (t1*2+t2)/3);
480 double fx = interp_cubic_coords(&fPts[0].fX, (t1+t2*2)/3);
481 double fy = interp_cubic_coords(&fPts[0].fY, (t1+t2*2)/3);
482 double dx = dst[3].fX = interp_cubic_coords(&fPts[0].fX, t2);
483 double dy = dst[3].fY = interp_cubic_coords(&fPts[0].fY, t2);
509 double ex = interp_cubic_coords(&fPts[0].fX, (t1 * 2 + t2) / 3)
548 static void interp_cubic_coords(const double* src, double* dst, double t) { function
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp 461 static void interp_cubic_coords(const SkScalar* src, SkScalar* dst, function
482 interp_cubic_coords(&src[0].fX, &dst[0].fX, t);
483 interp_cubic_coords(&src[0].fY, &dst[0].fY, t);
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 461 static void interp_cubic_coords(const SkScalar* src, SkScalar* dst, function
482 interp_cubic_coords(&src[0].fX, &dst[0].fX, t);
483 interp_cubic_coords(&src[0].fY, &dst[0].fY, t);
    [all...]

Completed in 330 milliseconds