Searched refs:newT (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/tests/ |
H A D | PathOpsCubicLineIntersectionIdeas.cpp | 221 double newT = binary_search(cubic, step, pt, t, &iters); in DEF_TEST() local 222 if (newT >= 0) { in DEF_TEST() 223 diff = fabs(t - newT); in DEF_TEST() 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 D | PathOpsTestCommon.cpp | 60 double newT = start + (index / parts) * (end - start); in addTs() local 61 if (newT > 0 && newT < 1) { in addTs() 62 ts->push_back(newT); in addTs()
|
/third_party/skia/include/private/ |
H A D | SkTArray.h | 212 void* newT = this->push_back_raw(1); in push_back() local 213 return *new (newT) T; in push_back() 220 void* newT = this->push_back_raw(1); in push_back() local 221 return *new (newT) T(t); in push_back() 228 void* newT = this->push_back_raw(1); in push_back() local 229 return *new (newT) T(std::move(t)); in push_back() 236 void* newT = this->push_back_raw(1); in emplace_back() local 237 return *new (newT) T(std::forward<Args>(args)...); in emplace_back()
|
/third_party/skia/src/pathops/ |
H A D | SkOpSegment.cpp | 229 bool SkOpSegment::addExpanded(double newT, const SkOpSpanBase* test, bool* startOver) { in addExpanded() argument 230 if (this->contains(newT)) { in addExpanded() 234 FAIL_IF(!between(0, newT, 1)); in addExpanded() 235 SkOpPtT* newPtT = this->addT(newT); in addExpanded() 240 newPtT->fPt = this->ptAtT(newT); in addExpanded() 484 bool SkOpSegment::contains(double newT) const { in contains() 487 if (spanBase->ptT()->contains(this, newT)) { in contains()
|
H A D | SkPathOpsCubic.cpp | 356 double newT = binarySearch(min, max, axisIntercept, xAxis); in searchRoots() 357 if (newT >= 0) { in searchRoots() 361 validRoots[validCount++] = newT; in searchRoots()
|
H A D | SkOpSegment.h | 69 bool addExpanded(double newT, const SkOpSpanBase* test, bool* startOver);
|
Completed in 8 milliseconds