Searched refs:newT (Results 1 - 9 of 9) sorted by relevance

/external/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp221 double newT = binary_search(cubic, step, pt, t, &iters); local
222 if (newT >= 0) {
223 diff = fabs(t - newT);
269 double newT = binary_search(cubic, 0.1, pt, t, &iters);
270 return newT;
277 double newT = testOneFailure(failure);
278 SkASSERT_RELEASE(newT >= 0);
285 double newT = testOneFailure(failure);
286 SkASSERT_RELEASE(newT >= 0);
H A DPathOpsTestCommon.cpp56 double newT = start + (index / parts) * (end - start); local
57 if (newT > 0 && newT < 1) {
58 ts->push_back(newT);
/external/skia/src/utils/
H A DSkCurveMeasure.cpp237 SkScalar newT; local
274 newT = currentT - (lengthDiff / dt);
276 // If newT is out of bounds, bisect inside newton.
277 if ((newT < 0.0f) || (newT > 1.0f)) {
278 newT = (minT + maxT) * 0.5f;
287 newT = (minT + maxT) * 0.5f;
293 currentT = newT;
/external/skia/include/private/
H A DSkTArray.h168 void* newT = this->push_back_raw(1); local
169 return *new (newT) T;
176 void* newT = this->push_back_raw(1); local
177 return *new (newT) T(t);
184 void* newT = this->push_back_raw(1); local
185 return *new (newT) T(std::move(t));
192 void* newT = this->push_back_raw(1); local
193 return *new (newT) T(std::forward<Args>(args)...);
/external/skia/tools/
H A Dsk_tool_utils.cpp523 SkScalar newL = r.fLeft, newT = r.fTop, newR = r.fRight, newB = r.fBottom; local
530 newT = SkTMax(newT, r.fTop + radii.fY - p.fY);
538 newT = SkTMax(newT, r.fTop + radii.fY - p.fY);
557 return SkRect::MakeLTRB(newL, newT, newR, newB);
/external/skia/src/pathops/
H A DSkOpSegment.cpp223 bool SkOpSegment::addExpanded(double newT, const SkOpSpanBase* test, bool* startOver) { argument
224 if (this->contains(newT)) {
228 FAIL_IF(!between(0, newT, 1));
229 SkOpPtT* newPtT = this->addT(newT);
234 newPtT->fPt = this->ptAtT(newT);
467 bool SkOpSegment::contains(double newT) const {
470 if (spanBase->ptT()->contains(this, newT)) {
H A DSkPathOpsCubic.cpp364 double newT = binarySearch(min, max, axisIntercept, xAxis);
365 if (newT >= 0) {
369 validRoots[validCount++] = newT;
H A DSkOpSegment.h69 bool addExpanded(double newT, const SkOpSpanBase* test, bool* startOver);
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp622 ObjCObjectPointerTypeLoc newT local
624 newT.setStarLoc(starLoc);

Completed in 218 milliseconds