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

  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 381 static double interp_cubic_coords(const double* src, double t) { function
401 double ax = dst[0].fX = interp_cubic_coords(&fPts[0].fX, t1);
402 double ay = dst[0].fY = interp_cubic_coords(&fPts[0].fY, t1);
403 double ex = interp_cubic_coords(&fPts[0].fX, (t1*2+t2)/3);
404 double ey = interp_cubic_coords(&fPts[0].fY, (t1*2+t2)/3);
405 double fx = interp_cubic_coords(&fPts[0].fX, (t1+t2*2)/3);
406 double fy = interp_cubic_coords(&fPts[0].fY, (t1+t2*2)/3);
407 double dx = dst[3].fX = interp_cubic_coords(&fPts[0].fX, t2);
408 double dy = dst[3].fY = interp_cubic_coords(&fPts[0].fY, t2);
434 double ex = interp_cubic_coords(&fPts[0].fX, (t1 * 2 + t2) / 3)
473 static void interp_cubic_coords(const double* src, double* dst, double t) { function
    [all...]
SkReduceOrder.cpp 186 static double interp_cubic_coords(const double* src, double t) { function
216 double yExtrema = interp_cubic_coords(&cubic[0].fY, tValues[index]);
240 double xExtrema = interp_cubic_coords(&cubic[0].fX, tValues[index]);
321 extrema.fX = interp_cubic_coords(&cubic[0].fX, tValues[index]);
322 extrema.fY = interp_cubic_coords(&cubic[0].fY, tValues[index]);
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 381 static double interp_cubic_coords(const double* src, double t) { function
401 double ax = dst[0].fX = interp_cubic_coords(&fPts[0].fX, t1);
402 double ay = dst[0].fY = interp_cubic_coords(&fPts[0].fY, t1);
403 double ex = interp_cubic_coords(&fPts[0].fX, (t1*2+t2)/3);
404 double ey = interp_cubic_coords(&fPts[0].fY, (t1*2+t2)/3);
405 double fx = interp_cubic_coords(&fPts[0].fX, (t1+t2*2)/3);
406 double fy = interp_cubic_coords(&fPts[0].fY, (t1+t2*2)/3);
407 double dx = dst[3].fX = interp_cubic_coords(&fPts[0].fX, t2);
408 double dy = dst[3].fY = interp_cubic_coords(&fPts[0].fY, t2);
434 double ex = interp_cubic_coords(&fPts[0].fX, (t1 * 2 + t2) / 3)
473 static void interp_cubic_coords(const double* src, double* dst, double t) { function
    [all...]
SkReduceOrder.cpp 186 static double interp_cubic_coords(const double* src, double t) { function
216 double yExtrema = interp_cubic_coords(&cubic[0].fY, tValues[index]);
240 double xExtrema = interp_cubic_coords(&cubic[0].fX, tValues[index]);
321 extrema.fX = interp_cubic_coords(&cubic[0].fX, tValues[index]);
322 extrema.fY = interp_cubic_coords(&cubic[0].fY, tValues[index]);
  /external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp 569 static void interp_cubic_coords(const SkScalar* src, SkScalar* dst, SkScalar t) function
591 interp_cubic_coords(&src[0].fX, &dst[0].fX, t);
592 interp_cubic_coords(&src[0].fY, &dst[0].fY, t);
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 569 static void interp_cubic_coords(const SkScalar* src, SkScalar* dst, SkScalar t) function
591 interp_cubic_coords(&src[0].fX, &dst[0].fX, t);
592 interp_cubic_coords(&src[0].fY, &dst[0].fY, t);
    [all...]

Completed in 238 milliseconds