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

  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticSubDivide.cpp 34 static double interp_quad_coords(const double* src, double t) function
43 double ax = dst[0].x = interp_quad_coords(&src[0].x, t1);
44 double ay = dst[0].y = interp_quad_coords(&src[0].y, t1);
45 double dx = interp_quad_coords(&src[0].x, (t1 + t2) / 2);
46 double dy = interp_quad_coords(&src[0].y, (t1 + t2) / 2);
47 double cx = dst[2].x = interp_quad_coords(&src[0].x, t2);
48 double cy = dst[2].y = interp_quad_coords(&src[0].y, t2);
55 double dx = interp_quad_coords(&src[0].x, (t1 + t2) / 2);
56 double dy = interp_quad_coords(&src[0].y, (t1 + t2) / 2);
63 static void interp_quad_coords(const double* src, double* dst, double t function
    [all...]
QuadraticReduceOrder.cpp 12 static double interp_quad_coords(double a, double b, double c, double t) function
35 double yExtrema = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y, tValue);
56 double xExtrema = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x, tValue);
105 extrema.x = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x, tValue);
106 extrema.y = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y, tValue);
  /external/skia/experimental/Intersection/
QuadraticSubDivide.cpp 34 static double interp_quad_coords(const double* src, double t) function
43 double ax = dst[0].x = interp_quad_coords(&src[0].x, t1);
44 double ay = dst[0].y = interp_quad_coords(&src[0].y, t1);
45 double dx = interp_quad_coords(&src[0].x, (t1 + t2) / 2);
46 double dy = interp_quad_coords(&src[0].y, (t1 + t2) / 2);
47 double cx = dst[2].x = interp_quad_coords(&src[0].x, t2);
48 double cy = dst[2].y = interp_quad_coords(&src[0].y, t2);
55 double dx = interp_quad_coords(&src[0].x, (t1 + t2) / 2);
56 double dy = interp_quad_coords(&src[0].y, (t1 + t2) / 2);
63 static void interp_quad_coords(const double* src, double* dst, double t function
    [all...]
QuadraticReduceOrder.cpp 12 static double interp_quad_coords(double a, double b, double c, double t) function
35 double yExtrema = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y, tValue);
56 double xExtrema = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x, tValue);
105 extrema.x = interp_quad_coords(quad[0].x, quad[1].x, quad[2].x, tValue);
106 extrema.y = interp_quad_coords(quad[0].y, quad[1].y, quad[2].y, tValue);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsQuad.cpp 207 static double interp_quad_coords(const double* src, double t) { function
220 double ax = dst[0].fX = interp_quad_coords(&fPts[0].fX, t1);
221 double ay = dst[0].fY = interp_quad_coords(&fPts[0].fY, t1);
222 double dx = interp_quad_coords(&fPts[0].fX, (t1 + t2) / 2);
223 double dy = interp_quad_coords(&fPts[0].fY, (t1 + t2) / 2);
224 double cx = dst[2].fX = interp_quad_coords(&fPts[0].fX, t2);
225 double cy = dst[2].fY = interp_quad_coords(&fPts[0].fY, t2);
245 double dx = interp_quad_coords(&fPts[0].fX, (t1 + t2) / 2);
246 double dy = interp_quad_coords(&fPts[0].fY, (t1 + t2) / 2);
282 static void interp_quad_coords(const double* src, double* dst, double t) function
    [all...]
  /external/skia/src/pathops/
SkPathOpsQuad.cpp 207 static double interp_quad_coords(const double* src, double t) { function
220 double ax = dst[0].fX = interp_quad_coords(&fPts[0].fX, t1);
221 double ay = dst[0].fY = interp_quad_coords(&fPts[0].fY, t1);
222 double dx = interp_quad_coords(&fPts[0].fX, (t1 + t2) / 2);
223 double dy = interp_quad_coords(&fPts[0].fY, (t1 + t2) / 2);
224 double cx = dst[2].fX = interp_quad_coords(&fPts[0].fX, t2);
225 double cy = dst[2].fY = interp_quad_coords(&fPts[0].fY, t2);
245 double dx = interp_quad_coords(&fPts[0].fX, (t1 + t2) / 2);
246 double dy = interp_quad_coords(&fPts[0].fY, (t1 + t2) / 2);
282 static void interp_quad_coords(const double* src, double* dst, double t) function
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp 208 static void interp_quad_coords(const SkScalar* src, SkScalar* dst, SkScalar t) { function
222 interp_quad_coords(&src[0].fX, &dst[0].fX, t);
223 interp_quad_coords(&src[0].fY, &dst[0].fY, t);
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 208 static void interp_quad_coords(const SkScalar* src, SkScalar* dst, SkScalar t) { function
222 interp_quad_coords(&src[0].fX, &dst[0].fX, t);
223 interp_quad_coords(&src[0].fY, &dst[0].fY, t);
    [all...]

Completed in 391 milliseconds