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

  /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...]
SkReduceOrder.cpp 16 static double interp_quad_coords(double a, double b, double c, double t) { function
42 double yExtrema = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue);
63 double xExtrema = interp_quad_coords(quad[0].fX, quad[1].fX, quad[2].fX, tValue);
112 extrema.fX = interp_quad_coords(quad[0].fX, quad[1].fX, quad[2].fX, tValue);
113 extrema.fY = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue);
  /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...]
SkReduceOrder.cpp 16 static double interp_quad_coords(double a, double b, double c, double t) { function
42 double yExtrema = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue);
63 double xExtrema = interp_quad_coords(quad[0].fX, quad[1].fX, quad[2].fX, tValue);
112 extrema.fX = interp_quad_coords(quad[0].fX, quad[1].fX, quad[2].fX, tValue);
113 extrema.fY = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue);
  /external/chromium_org/third_party/skia/src/core/
SkGeometry.cpp 256 static void interp_quad_coords(const SkScalar* src, SkScalar* dst, SkScalar t) function
272 interp_quad_coords(&src[0].fX, &dst[0].fX, t);
273 interp_quad_coords(&src[0].fY, &dst[0].fY, t);
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 256 static void interp_quad_coords(const SkScalar* src, SkScalar* dst, SkScalar t) function
272 interp_quad_coords(&src[0].fX, &dst[0].fX, t);
273 interp_quad_coords(&src[0].fY, &dst[0].fY, t);
    [all...]

Completed in 147 milliseconds