/third_party/flutter/skia/tools/viewer/ |
D | StatsLayer.cpp | 133 int endY = SkTMax(startY - height, kDisplayPadding + kTextHeight); in onPaint() local 136 SkIntToScalar(x), SkIntToScalar(endY), paint); in onPaint() 137 startY = endY; in onPaint() 144 int endY = SkTMax(startY - height, kDisplayPadding + kTextHeight); in onPaint() local 147 SkIntToScalar(x), SkIntToScalar(endY), paint); in onPaint()
|
/third_party/skia/tools/viewer/ |
D | StatsLayer.cpp | 132 int endY = std::max(startY - height, kDisplayPadding + kTextHeight); in onPaint() local 135 SkIntToScalar(x), SkIntToScalar(endY), paint); in onPaint() 136 startY = endY; in onPaint() 143 int endY = std::max(startY - height, kDisplayPadding + kTextHeight); in onPaint() local 146 SkIntToScalar(x), SkIntToScalar(endY), paint); in onPaint()
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/ |
D | conic.dart | 100 final double endY = src.p2y; 102 if (_between(startY, cpY, endY)) { 105 if (!_between(startY, midY, endY)) { 109 (midY - startY).abs() < (midY - endY).abs() ? startY : endY; 117 if (!_between(conic1.p0y, conic1.p1y, endY)) { 120 conic1.p1y = endY; 125 assert(_between(conic0.p2y, conic1.p1y, endY));
|
/third_party/flutter/skia/src/core/ |
D | SkGeometry.cpp | 1249 SkScalar endY = src.fPts[2].fY; in subdivide() local 1250 if (between(startY, src.fPts[1].fY, endY)) { in subdivide() 1254 if (!between(startY, midY, endY)) { in subdivide() 1256 SkScalar closerY = SkTAbs(midY - startY) < SkTAbs(midY - endY) ? startY : endY; in subdivide() 1264 if (!between(dst[1].fPts[0].fY, dst[1].fPts[1].fY, endY)) { in subdivide() 1267 dst[1].fPts[1].fY = endY; in subdivide() 1272 SkASSERT(between(dst[0].fPts[2].fY, dst[1].fPts[1].fY, endY)); in subdivide()
|
/third_party/skia/src/core/ |
D | SkGeometry.cpp | 1448 SkScalar endY = src.fPts[2].fY; in subdivide() local 1449 if (between(startY, src.fPts[1].fY, endY)) { in subdivide() 1453 if (!between(startY, midY, endY)) { in subdivide() 1455 SkScalar closerY = SkTAbs(midY - startY) < SkTAbs(midY - endY) ? startY : endY; in subdivide() 1463 if (!between(dst[1].fPts[0].fY, dst[1].fPts[1].fY, endY)) { in subdivide() 1466 dst[1].fPts[1].fY = endY; in subdivide() 1471 SkASSERT(between(dst[0].fPts[2].fY, dst[1].fPts[1].fY, endY)); in subdivide()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationCommonEdgeTests.cpp | 80 const int endY = static_cast<int>(0.85f * (float)image.getHeight()); in verifyResult() local 82 for (int y = startY; y < endY; ++y) in verifyResult()
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuImageCompare.cpp | 105 …const int endY = (acceptOutOfBoundsAsAnyValue) ? (height - maxPositionDeviation.y()) : (heigh… in findNumPositionDeviationFailingPixels() local 109 DE_ASSERT(endX > 0 && endY > 0 && endZ > 0); // most likely a bug in findNumPositionDeviationFailingPixels() 115 for (int y = beginY; y < endY; y++) in findNumPositionDeviationFailingPixels()
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/ |
D | canvas.dart | 1902 final double endY = cmd.y3; 1906 minY = math.min(startY, endY); 1908 maxY = math.max(startY, endY); 1974 if (!(((startY < cpY1) && (cpY1 < cpY2) && (cpY2 < endY)) || 1975 ((startY > cpY1) && (cpY1 > cpY2) && (cpY2 > endY)))) { 1980 a = -startY + (3 * (cpY1 - cpY2)) + endY; 1998 (t * t * t * endY); 2011 (t * t * t * endY); 2022 (t2 * t2 * t2 * endY);
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fTessellationTests.cpp | 1875 const int endY = (int)(0.85f * (float)rendered.getHeight()); in iterate() local 1877 for (int y = startY; y < endY; y++) in iterate()
|
/third_party/flutter/engine/flutter/lib/ui/ |
D | painting.dart | 2881 …void _initConical(double startX, double startY, double startRadius, double endX, double endY, doub…
|