HomeSort by relevance Sort by last modified time
    Searched refs:subDivide (Results 1 - 14 of 14) 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 97 SkDConic subDivide(double t1, double t2) const;
99 static SkDConic SubDivide(const SkPoint a[kPointCount], SkScalar weight, double t1, double t2) {
102 return conic.subDivide(t1, t2);
105 SkDPoint subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2,
108 static SkDPoint SubDivide(const SkPoint pts[kPointCount], SkScalar weight,
113 return conic.subDivide(a, c, t1, t2, newWeight);
SkPathOpsQuad.h 83 SkDQuad subDivide(double t1, double t2) const;
84 static SkDQuad SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
87 return quad.subDivide(t1, t2);
89 SkDPoint subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2) const;
90 static SkDPoint SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& c,
94 return quad.subDivide(a, c, t1, t2);
SkPathOpsCubic.h 109 SkDCubic subDivide(double t1, double t2) const;
111 static SkDCubic SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
113 return cubic.set(a).subDivide(t1, t2);
116 void subDivide(const SkDPoint& a, const SkDPoint& d, double t1, double t2, SkDPoint p[2]) const;
118 static void SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& d, double t1,
121 cubic.set(pts).subDivide(a, d, t1, t2, p);
SkPathOpsConic.cpp 99 /* see quad subdivide for point rationale */
120 SkDConic SkDConic::subDivide(double t1, double t2) const {
161 SkDPoint SkDConic::subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2,
163 SkDConic chopped = this->subDivide(t1, t2);
SkPathOpsQuad.cpp 232 SkDQuad SkDQuad::subDivide(double t1, double t2) const {
254 SkDPoint SkDQuad::subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2) const {
257 SkDQuad sub = subDivide(t1, t2);
SkPathOpsCurve.h 208 SkDQuad dst = quad.subDivide(startT, endT);
215 SkDConic dst = conic.subDivide(startT, endT);
222 SkDCubic dst = cubic.subDivide(startT, endT);
SkOpSegment.h 360 bool subDivide(const SkOpSpanBase* start, const SkOpSpanBase* end, SkDCurve* result) const;
361 bool subDivide(const SkOpSpanBase* start, const SkOpSpanBase* end, SkOpCurve* result) const;
SkPathOpsCubic.cpp 628 SkDCubic SkDCubic::subDivide(double t1, double t2) const {
658 void SkDCubic::subDivide(const SkDPoint& a, const SkDPoint& d,
662 SkDCubic sub = subDivide(t1, t2);
SkOpSegment.cpp 256 subDivide(start, end, &edge);
    [all...]
SkOpAngle.cpp 896 segment->subDivide(fStart, fEnd, &fCurvePart);
    [all...]
SkPathOpsTSect.h 551 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,
169 dChopped[0] = dConic.subDivide(0, t);
170 dChopped[1] = dConic.subDivide(t, 1);

Completed in 369 milliseconds