Home
last modified time | relevance | path

Searched refs:tIndex (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/tests/
DPathOpsQuadLineIntersectionThreadedTest.cpp96 for (int tIndex = 0; tIndex <= 4; ++tIndex) { in testQuadLineIntersectMain() local
97 SkDPoint xy = quad.ptAtT(tIndex / 4.0); in testQuadLineIntersectMain()
DPathOpsConicIntersectionTest.cpp144 for (int tIndex = 0; tIndex < chops; ++tIndex) { in writeDPng() local
145 SkDConic chopped = dConic.subDivide(tIndex / (double) chops, in writeDPng()
146 (tIndex + 1) / (double) chops); in writeDPng()
/third_party/flutter/skia/tests/
DPathOpsQuadLineIntersectionThreadedTest.cpp96 for (int tIndex = 0; tIndex <= 4; ++tIndex) { in testQuadLineIntersectMain() local
97 SkDPoint xy = quad.ptAtT(tIndex / 4.0); in testQuadLineIntersectMain()
DPathOpsConicIntersectionTest.cpp144 for (int tIndex = 0; tIndex < chops; ++tIndex) { in writeDPng() local
145 SkDConic chopped = dConic.subDivide(tIndex / (double) chops, in writeDPng()
146 (tIndex + 1) / (double) chops); in writeDPng()
/third_party/flutter/skia/src/pathops/
DSkIntersections.h198 void set(bool swap, int tIndex, double t) { in set() argument
199 fT[(int) swap][tIndex] = t; in set()
DSkPathOpsWinding.cpp231 int tIndex = (tBase - 1) & ((1 << tBits) - 1); in get_t_guess() local
232 t += t * 2 * tIndex; in get_t_guess()
DSkPathOpsTSect.cpp1085 for (int tIndex = 0; tIndex < thisRayI.used(); ++tIndex) { in linesIntersect() local
1087 ptMatches += thisRayI.pt(tIndex).approximatelyEqual(thisLine.fPts[lIndex]); in linesIntersect()
/third_party/skia/src/pathops/
DSkIntersections.h198 void set(bool swap, int tIndex, double t) { in set() argument
199 fT[(int) swap][tIndex] = t; in set()
DSkPathOpsWinding.cpp232 int tIndex = (tBase - 1) & ((1 << tBits) - 1); in get_t_guess() local
233 t += t * 2 * tIndex; in get_t_guess()
DSkPathOpsTSect.cpp1086 for (int tIndex = 0; tIndex < thisRayI.used(); ++tIndex) { in linesIntersect() local
1088 ptMatches += thisRayI.pt(tIndex).approximatelyEqual(thisLine.fPts[lIndex]); in linesIntersect()
/third_party/flutter/skia/samplecode/
DSampleAAGeometry.cpp1147 for (int tIndex = 0; tIndex < tMaxCount; ++tIndex) { in draw_bisects() local
1148 if (0 >= tMax[tIndex] || tMax[tIndex] >= 1) { in draw_bisects()
1153 SkEvalCubicAt(pts, tMax[tIndex], &maxPt, &tangent, nullptr); in draw_bisects()