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

  /external/dng_sdk/source/
dng_1d_table.cpp 42 void dng_1d_table::SubDivide (const dng_1d_function &function,
50 bool subDivide = (range > (kTableSize >> 8));
52 if (!subDivide)
61 subDivide = true;
67 if (subDivide)
77 SubDivide (function, lower, middle, maxDelta);
79 SubDivide (function, middle, upper, maxDelta);
127 SubDivide (function,
  /external/skia/src/pathops/
SkPathOpsConic.h 105 SkDConic subDivide(double t1, double t2) const;
107 static SkDConic SubDivide(const SkPoint a[kPointCount], SkScalar weight, double t1, double t2) {
110 return conic.subDivide(t1, t2);
113 SkDPoint subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2,
116 static SkDPoint SubDivide(const SkPoint pts[kPointCount], SkScalar weight,
121 return conic.subDivide(a, c, t1, t2, newWeight);
SkPathOpsQuad.h 91 SkDQuad subDivide(double t1, double t2) const;
92 static SkDQuad SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
95 return quad.subDivide(t1, t2);
97 SkDPoint subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2) const;
98 static SkDPoint SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& c,
102 return quad.subDivide(a, c, t1, t2);
SkPathOpsCubic.h 116 SkDCubic subDivide(double t1, double t2) const;
118 static SkDCubic SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
120 return cubic.set(a).subDivide(t1, t2);
123 void subDivide(const SkDPoint& a, const SkDPoint& d, double t1, double t2, SkDPoint p[2]) const;
125 static void SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& d, double t1,
128 cubic.set(pts).subDivide(a, d, t1, t2, p);
SkPathOpsConic.cpp 102 /* see quad subdivide for point rationale */
123 SkDConic SkDConic::subDivide(double t1, double t2) const {
165 SkDPoint SkDConic::subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2,
167 SkDConic chopped = this->subDivide(t1, t2);
SkPathOpsQuad.cpp 268 SkDQuad SkDQuad::subDivide(double t1, double t2) const {
293 SkDPoint SkDQuad::subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2) const {
296 SkDQuad sub = subDivide(t1, t2);
SkPathOpsCurve.h 272 SkDQuad dst = quad.subDivide(startT, endT);
279 SkDConic dst = conic.subDivide(startT, endT);
286 SkDCubic dst = cubic.subDivide(startT, endT);
SkPathOpsCubic.cpp 655 SkDCubic SkDCubic::subDivide(double t1, double t2) const {
685 void SkDCubic::subDivide(const SkDPoint& a, const SkDPoint& d,
689 SkDCubic sub = subDivide(t1, t2);
SkOpSegment.cpp 166 start->segment()->subDivide(start, end, &curvePart.fCurve);
    [all...]
SkOpSegment.h 385 bool subDivide(const SkOpSpanBase* start, const SkOpSpanBase* end, SkDCurve* result) const;
SkOpAngle.cpp 880 segment->subDivide(fStart, fEnd, &fPart.fCurve); // set at least the line part if not more
    [all...]
SkPathOpsDebug.cpp     [all...]
SkPathOpsTSect.h 574 fPart = c.subDivide(fStartT, fEndT);
    [all...]
  /external/skia/tests/
PathOpsTestCommon.cpp 24 sub = cubic.subDivide(start, 1);
119 SkDCubic part = cubic->subDivide(0, inflectT[0]);
123 part = cubic->subDivide(inflectT[idx], inflectT[idx + 1]);
126 part = cubic->subDivide(inflectT[last], 1);
146 SkDCubic part = cubic.subDivide(tStart, tEnd);
230 SkDCubic part = cubic.subDivide(lo, hi);
PathOpsConicIntersectionTest.cpp 146 SkDConic chopped = dConic.subDivide(tIndex / (double) chops,
171 dChopped[0] = dConic.subDivide(0, t);
172 dChopped[1] = dConic.subDivide(t, 1);

Completed in 249 milliseconds