Home
last modified time | relevance | path

Searched refs:tStart (Results 1 – 25 of 29) sorted by relevance

12

/third_party/flutter/skia/src/pathops/
DSkPathOpsCurve.cpp63 double tStart, double tEnd, SkPathOpsBounds* bounds) { in setConicBounds() argument
67 dRect.setBounds(dCurve, fConic, tStart, tEnd); in setConicBounds()
73 double tStart, double tEnd, SkPathOpsBounds* bounds) { in setCubicBounds() argument
77 dRect.setBounds(dCurve, fCubic, tStart, tEnd); in setCubicBounds()
83 double tStart, double tEnd, SkPathOpsBounds* bounds) { in setQuadBounds() argument
87 dRect.setBounds(dCurve, fQuad, tStart, tEnd); in setQuadBounds()
DSkPathOpsRect.h56 void setBounds(const SkDConic& curve, const SkDConic& sub, double tStart, double tEnd);
62 void setBounds(const SkDCubic& curve, const SkDCubic& sub, double tStart, double tEnd);
68 void setBounds(const SkDQuad& curve, const SkDQuad& sub, double tStart, double tEnd);
DSkOpAngle.cpp524 double tStart = index ? rh->fStart->t() : this->fStart->t(); in endsIntersect() local
526 bool testAscends = tStart < (index ? rh->fComputedEnd->t() : this->fComputedEnd->t()); in endsIntersect()
530 if (!approximately_between_orderable(tStart, testT, tEnd)) { in endsIntersect()
533 if (approximately_equal_orderable(tStart, testT)) { in endsIntersect()
625 double tStart = sIndex ? rh->fStart->t() : fStart->t(); in endsIntersect() local
626 SkDVector mid = segment.dPtAtT(tStart + (sCeptT - tStart) / 2) - curve[0]; in endsIntersect()
803 double tStart = angle->fStart->t(); in loopContains() local
815 if (lEnd == tStart) { in loopContains()
DSkPathOpsTSect.cpp547 bool SkTSect::binarySearchCoin(SkTSect* sect2, double tStart, in binarySearchCoin() argument
550 double result = work.fStartT = work.fEndT = tStart; in binarySearchCoin()
552 SkDPoint last = fCurve.ptAtT(tStart); in binarySearchCoin()
1159 double tStart = oCoinS.perpT(); in linesIntersect() local
1161 bool swap = tStart > tEnd; in linesIntersect()
1164 swap(tStart, tEnd); in linesIntersect()
1166 tStart = SkTMax(tStart, span->fStartT); in linesIntersect()
1168 if (tStart > tEnd) { in linesIntersect()
1172 if (tStart == span->fStartT) { in linesIntersect()
1194 double workT = tStart; in linesIntersect()
[all …]
DSkOpCoincidence.h252 double tStart, double tEnd, SkOpSegment* coinSeg, SkOpSegment* oppSeg,
273 double tStart, double tEnd,
DSkOpCoincidence.cpp620 double tStart, double tEnd, SkOpSegment* coinSeg, SkOpSegment* oppSeg, bool* added in addIfMissing() argument
622 SkASSERT(tStart < tEnd); in addIfMissing()
624 SkASSERT(between(over1s->fT, tStart, over1e->fT)); in addIfMissing()
627 SkASSERT(between(over2s->fT, tStart, over2e->fT)); in addIfMissing()
636 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in addIfMissing()
642 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in addIfMissing()
DSkPathOpsTSect.h292 bool binarySearchCoin(SkTSect* , double tStart, double tStep, double* t,
DSkPathOpsDebug.cpp1724 … double tStart, double tEnd, const SkOpSegment* coinSeg, const SkOpSegment* oppSeg, bool* added, in debugAddIfMissing() argument
1726 SkASSERT(tStart < tEnd); in debugAddIfMissing()
1728 SkASSERT(between(over1s->fT, tStart, over1e->fT)); in debugAddIfMissing()
1731 SkASSERT(between(over2s->fT, tStart, over2e->fT)); in debugAddIfMissing()
1740 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in debugAddIfMissing()
1746 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in debugAddIfMissing()
DSkPathOpsCurve.h100 double tStart, double tEnd, double* topT);
/third_party/skia/src/pathops/
DSkPathOpsCurve.cpp63 double tStart, double tEnd, SkPathOpsBounds* bounds) { in setConicBounds() argument
67 dRect.setBounds(dCurve, fConic, tStart, tEnd); in setConicBounds()
73 double tStart, double tEnd, SkPathOpsBounds* bounds) { in setCubicBounds() argument
77 dRect.setBounds(dCurve, fCubic, tStart, tEnd); in setCubicBounds()
83 double tStart, double tEnd, SkPathOpsBounds* bounds) { in setQuadBounds() argument
87 dRect.setBounds(dCurve, fQuad, tStart, tEnd); in setQuadBounds()
DSkPathOpsRect.h56 void setBounds(const SkDConic& curve, const SkDConic& sub, double tStart, double tEnd);
62 void setBounds(const SkDCubic& curve, const SkDCubic& sub, double tStart, double tEnd);
68 void setBounds(const SkDQuad& curve, const SkDQuad& sub, double tStart, double tEnd);
DSkOpAngle.cpp524 double tStart = index ? rh->fStart->t() : this->fStart->t(); in endsIntersect() local
526 bool testAscends = tStart < (index ? rh->fComputedEnd->t() : this->fComputedEnd->t()); in endsIntersect()
530 if (!approximately_between_orderable(tStart, testT, tEnd)) { in endsIntersect()
533 if (approximately_equal_orderable(tStart, testT)) { in endsIntersect()
625 double tStart = sIndex ? rh->fStart->t() : fStart->t(); in endsIntersect() local
626 SkDVector mid = segment.dPtAtT(tStart + (sCeptT - tStart) / 2) - curve[0]; in endsIntersect()
803 double tStart = angle->fStart->t(); in loopContains() local
815 if (lEnd == tStart) { in loopContains()
DSkPathOpsTSect.cpp548 bool SkTSect::binarySearchCoin(SkTSect* sect2, double tStart, in binarySearchCoin() argument
551 double result = work.fStartT = work.fEndT = tStart; in binarySearchCoin()
553 SkDPoint last = fCurve.ptAtT(tStart); in binarySearchCoin()
1160 double tStart = oCoinS.perpT(); in linesIntersect() local
1162 bool swap = tStart > tEnd; in linesIntersect()
1165 swap(tStart, tEnd); in linesIntersect()
1167 tStart = std::max(tStart, span->fStartT); in linesIntersect()
1169 if (tStart > tEnd) { in linesIntersect()
1173 if (tStart == span->fStartT) { in linesIntersect()
1195 double workT = tStart; in linesIntersect()
[all …]
DSkOpCoincidence.h252 double tStart, double tEnd, SkOpSegment* coinSeg, SkOpSegment* oppSeg,
273 double tStart, double tEnd,
DSkOpCoincidence.cpp620 double tStart, double tEnd, SkOpSegment* coinSeg, SkOpSegment* oppSeg, bool* added in addIfMissing() argument
622 SkASSERT(tStart < tEnd); in addIfMissing()
624 SkASSERT(between(over1s->fT, tStart, over1e->fT)); in addIfMissing()
627 SkASSERT(between(over2s->fT, tStart, over2e->fT)); in addIfMissing()
636 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in addIfMissing()
642 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in addIfMissing()
DSkPathOpsTSect.h291 bool binarySearchCoin(SkTSect* , double tStart, double tStep, double* t,
DSkPathOpsDebug.cpp1702 … double tStart, double tEnd, const SkOpSegment* coinSeg, const SkOpSegment* oppSeg, bool* added, in debugAddIfMissing() argument
1704 SkASSERT(tStart < tEnd); in debugAddIfMissing()
1706 SkASSERT(between(over1s->fT, tStart, over1e->fT)); in debugAddIfMissing()
1709 SkASSERT(between(over2s->fT, tStart, over2e->fT)); in debugAddIfMissing()
1718 coinTs = TRange(over1s, tStart, coinSeg SkDEBUGPARAMS(over1e)); in debugAddIfMissing()
1724 oppTs = TRange(over2s, tStart, oppSeg SkDEBUGPARAMS(over2e)); in debugAddIfMissing()
DSkPathOpsCurve.h100 double tStart, double tEnd, double* topT);
/third_party/mesa3d/src/mesa/swrast/
Ds_aalinetemp.h109 GLfloat tStart, tEnd; /* segment start, end along line length */ in NAME() local
193 tStart = tEnd = 0.0; in NAME()
206 tStart = t; in NAME()
215 if (inSegment && (tEnd > tStart)) { in NAME()
217 segment(ctx, &line, NAME(plot), tStart, tEnd); in NAME()
229 segment(ctx, &line, NAME(plot), tStart, 1.0F); in NAME()
/third_party/flutter/skia/tests/
DPathOpsTestCommon.cpp144 double tStart = 0; in CubicToQuads() local
149 SkDCubic part = cubic.subDivide(tStart, tEnd); in CubicToQuads()
162 tStart = tEnd; in CubicToQuads()
/third_party/skia/tests/
DPathOpsTestCommon.cpp145 double tStart = 0; in CubicToQuads() local
150 SkDCubic part = cubic.subDivide(tStart, tEnd); in CubicToQuads()
163 tStart = tEnd; in CubicToQuads()
/third_party/gstreamer/gstplugins_bad/sys/dshowvideosink/
Ddshowvideofakesrc.h74 STDMETHODIMP Run(REFERENCE_TIME tStart);
Ddshowvideofakesrc.cpp375 STDMETHODIMP VideoFakeSrc::Run(REFERENCE_TIME tStart) in Run() argument
379 return CBaseFilter::Run(tStart); in Run()
/third_party/skia/src/core/
DSkStroke.cpp255 void init(StrokeType strokeType, SkQuadConstruct* , SkScalar tStart, SkScalar tEnd);
525 void SkPathStroker::init(StrokeType strokeType, SkQuadConstruct* quadPts, SkScalar tStart, in init() argument
529 quadPts->init(tStart, tEnd); in init()
/third_party/flutter/skia/src/core/
DSkStroke.cpp222 void init(StrokeType strokeType, SkQuadConstruct* , SkScalar tStart, SkScalar tEnd);
492 void SkPathStroker::init(StrokeType strokeType, SkQuadConstruct* quadPts, SkScalar tStart, in init() argument
496 quadPts->init(tStart, tEnd); in init()

12