Searched defs:sweep (Results 1 - 25 of 29) sorted by relevance

12

/external/valgrind/none/tests/s390x/
H A Dclc.c50 void sweep(int l) function
60 sweep(0);
61 sweep(1);
62 sweep(2);
63 sweep(3);
64 sweep(4);
65 sweep(5);
66 sweep(22);
/external/skia/samplecode/
H A DSampleArc.cpp47 void setSweep(SkScalar sweep) { argument
48 if (fSweep != sweep) {
49 fSweep = sweep;
119 static void DrawLabel(SkCanvas* canvas, const SkRect& rect, SkScalar start, SkScalar sweep) { argument
129 str.appendScalar(sweep);
H A DSampleDither.cpp54 SkScalar sweep = 360.0f; local
61 path.arcTo(bounds, 0, sweep, false);
63 path.arcTo(innerBounds, sweep, -sweep, false);
/external/skqp/samplecode/
H A DSampleArc.cpp47 void setSweep(SkScalar sweep) { argument
48 if (fSweep != sweep) {
49 fSweep = sweep;
119 static void DrawLabel(SkCanvas* canvas, const SkRect& rect, SkScalar start, SkScalar sweep) { argument
129 str.appendScalar(sweep);
H A DSampleDither.cpp54 SkScalar sweep = 360.0f; local
61 path.arcTo(bounds, 0, sweep, false);
63 path.arcTo(innerBounds, sweep, -sweep, false);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
H A DPieRenderer.java69 float sweep = (float) (scale * (values[i]) * 360);
70 offset += sweep;
73 radius, lastOffset, sweep);
80 float rad, float startAngle, float sweep) {
103 PointF r2Outer = calculateLineEnd(cx, cy, rad, startAngle + sweep);
104 PointF r2Inner = calculateLineEnd(cx, cy, donutSizePx, startAngle + sweep);
119 startAngle, sweep);
125 p.arcTo(bounds, startAngle, sweep);
128 // sweep back to original angle:
134 startAngle + sweep,
79 drawSegment(Canvas canvas, RectF bounds, Segment seg, SegmentFormatter f, float rad, float startAngle, float sweep) argument
[all...]
/external/skia/gm/
H A Daddarc.cpp225 SkScalar sweep = ccw ? end - start : start - end; local
227 path->arcTo(bounds, start, sweep, false);
229 path->addArc(bounds, start, sweep);
/external/skia/src/utils/
H A DSkParsePath.cpp167 SkScalar angle, largeArc, sweep; local
174 && (data = find_scalar(data, &sweep, false, 0))
178 (SkPath::Direction) !SkToBool(sweep), points[0]);
/external/skqp/gm/
H A Daddarc.cpp225 SkScalar sweep = ccw ? end - start : start - end; local
227 path->arcTo(bounds, start, sweep, false);
229 path->addArc(bounds, start, sweep);
/external/skqp/src/utils/
H A DSkParsePath.cpp167 SkScalar angle, largeArc, sweep; local
174 && (data = find_scalar(data, &sweep, false, 0))
178 (SkPath::Direction) !SkToBool(sweep), points[0]);
/external/skia/include/core/
H A DSkPath.h791 @param sweepAngle sweep, in degrees. Positive is clockwise; treated modulo 360
817 Arc sweep is always less than 180 degrees. If radius is zero, or if
845 Arc sweep is always less than 360 degrees. arcTo() appends line to (x, y) if
851 arcTo() implements the functionality of svg arc, although SVG "sweep-flag" value
852 is opposite the integer value of sweep; SVG "sweep-flag" uses 1 for clockwise,
859 @param sweep chooses clockwise or counterclockwise arc
864 Direction sweep, SkScalar x, SkScalar y);
871 Arc sweep is always less than 360 degrees. arcTo() appends line to xy if either radii are zero,
876 arcTo() implements the functionality of svg arc, although SVG "sweep
886 arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, const SkPoint xy) argument
[all...]
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DTexture.cpp364 void Texture2D::sweep() function in class:es1::Texture2D
/external/skia/tests/
H A DPathOpsAngleIdeas.cpp118 static void setQuadHullSweep(const SkDQuad& quad, SkDVector sweep[2]) { argument
119 sweep[0] = quad[1] - quad[0];
120 sweep[1] = quad[2] - quad[0];
130 SkDVector sweep[2], tweep[2]; local
131 setQuadHullSweep(quad1, sweep);
142 double s0dt0 = sweep[0].dot(tweep[0]);
144 double s0xt0 = sweep[0].crossCheck(tweep[0]);
146 double sDist = sweep[0].length() * m;
165 SkDVector sweep[2], tweep[2];
166 setQuadHullSweep(quad1, sweep);
211 double sweep = end - start; local
[all...]
H A DPathTest.cpp3643 static void check_oval_arc(skiatest::Reporter* reporter, SkScalar start, SkScalar sweep, argument
3654 REPORTER_ASSERT(reporter, (SkPath::kCW_Direction == d) == (sweep > 0.f));
3659 for (SkScalar sweep : {-720.f, -540.f, -360.f, 360.f, 432.f, 720.f}) {
3662 path.addArc(oval, start, sweep);
3666 check_oval_arc(reporter, start, sweep, path);
3675 path.addArc(oval, start + delta, sweep);
3676 check_oval_arc(reporter, start, sweep, path);
3796 for (float sweep = 359, delta = 0.5f; sweep != (float) (sweep
[all...]
/external/skqp/include/core/
H A DSkPath.h833 @param sweepAngle sweep, in degrees. Positive is clockwise; treated modulo 360
859 Arc sweep is always less than 180 degrees. If radius is zero, or if
887 Arc sweep is always less than 360 degrees. arcTo() appends line to (x, y) if
893 arcTo() implements the functionality of svg arc, although SVG "sweep-flag" value
894 is opposite the integer value of sweep; SVG "sweep-flag" uses 1 for clockwise,
901 @param sweep chooses clockwise or counterclockwise arc
906 Direction sweep, SkScalar x, SkScalar y);
913 Arc sweep is always less than 360 degrees. arcTo() appends line to xy if either radii are zero,
918 arcTo() implements the functionality of svg arc, although SVG "sweep
928 arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, const SkPoint xy) argument
[all...]
/external/skqp/tests/
H A DPathOpsAngleIdeas.cpp118 static void setQuadHullSweep(const SkDQuad& quad, SkDVector sweep[2]) { argument
119 sweep[0] = quad[1] - quad[0];
120 sweep[1] = quad[2] - quad[0];
130 SkDVector sweep[2], tweep[2]; local
131 setQuadHullSweep(quad1, sweep);
142 double s0dt0 = sweep[0].dot(tweep[0]);
144 double s0xt0 = sweep[0].crossCheck(tweep[0]);
146 double sDist = sweep[0].length() * m;
165 SkDVector sweep[2], tweep[2];
166 setQuadHullSweep(quad1, sweep);
211 double sweep = end - start; local
[all...]
H A DPathTest.cpp3737 static void check_oval_arc(skiatest::Reporter* reporter, SkScalar start, SkScalar sweep, argument
3748 REPORTER_ASSERT(reporter, (SkPath::kCW_Direction == d) == (sweep > 0.f));
3753 for (SkScalar sweep : {-720.f, -540.f, -360.f, 360.f, 432.f, 720.f}) {
3756 path.addArc(oval, start, sweep);
3760 check_oval_arc(reporter, start, sweep, path);
3769 path.addArc(oval, start + delta, sweep);
3770 check_oval_arc(reporter, start, sweep, path);
3890 for (float sweep = 359, delta = 0.5f; sweep != (float) (sweep
[all...]
/external/swiftshader/src/OpenGL/libGLESv2/
H A DTexture.cpp472 void Texture2D::sweep() function in class:es2::Texture2D
952 void TextureCubeMap::sweep() function in class:TextureCubeMap
1458 void Texture3D::sweep()
/external/ImageMagick/MagickCore/
H A Ddraw.c5141 const MagickBooleanType large_arc,const MagickBooleanType sweep)
5210 if (sweep == large_arc)
5217 if ((theta < 0.0) && (sweep != MagickFalse))
5220 if ((theta > 0.0) && (sweep == MagickFalse))
5513 sweep;
5545 sweep=StringToLong(token) != 0 ? MagickTrue : MagickFalse;
5556 TraceArcPath(q,point,end,arc,angle,large_arc,sweep);
5114 TraceArcPath(PrimitiveInfo *primitive_info,const PointInfo start, const PointInfo end,const PointInfo arc,const double angle, const MagickBooleanType large_arc,const MagickBooleanType sweep) argument
5488 sweep; local
/external/skia/src/pathops/
H A DSkOpAngle.cpp260 const SkDVector* sweep, * tweep; local
262 sweep = this->fPart.fSweep;
265 sweep = &scratch[0];
273 double s0xt0 = sweep->crossCheck(*tweep);
360 const SkDVector* sweep = this->fPart.fSweep; local
362 double s0xs1 = sweep[0].crossCheck(sweep[1]);
363 double s0xt0 = sweep[0].crossCheck(tweep[0]);
364 double s1xt0 = sweep[1].crossCheck(tweep[0]);
366 double s0xt1 = sweep[
1025 const SkDVector* sweep = fPart.fSweep; local
[all...]
/external/skqp/src/pathops/
H A DSkOpAngle.cpp260 const SkDVector* sweep, * tweep; local
262 sweep = this->fPart.fSweep;
265 sweep = &scratch[0];
273 double s0xt0 = sweep->crossCheck(*tweep);
360 const SkDVector* sweep = this->fPart.fSweep; local
362 double s0xs1 = sweep[0].crossCheck(sweep[1]);
363 double s0xt0 = sweep[0].crossCheck(tweep[0]);
364 double s1xt0 = sweep[1].crossCheck(tweep[0]);
366 double s0xt1 = sweep[
1025 const SkDVector* sweep = fPart.fSweep; local
[all...]
/external/skia/src/core/
H A DSkPath.cpp1074 // Return the unit vectors pointing at the start/stop points for the given start/sweep angles
1081 /* If the sweep angle is nearly (but less than) 360, then due to precision
1494 SkPath::Direction sweep, SkScalar dx, SkScalar dy) {
1497 this->arcTo(rx, ry, xAxisRotate, largeArc, sweep, currentPoint.fX + dx, currentPoint.fY + dy);
1493 rArcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, SkPath::ArcSize largeArc, SkPath::Direction sweep, SkScalar dx, SkScalar dy) argument
/external/skqp/src/core/
H A DSkPath.cpp1065 // Return the unit vectors pointing at the start/stop points for the given start/sweep angles
1072 /* If the sweep angle is nearly (but less than) 360, then due to precision
1466 SkPath::Direction sweep, SkScalar dx, SkScalar dy) {
1469 this->arcTo(rx, ry, xAxisRotate, largeArc, sweep, currentPoint.fX + dx, currentPoint.fY + dy);
1465 rArcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, SkPath::ArcSize largeArc, SkPath::Direction sweep, SkScalar dx, SkScalar dy) argument
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 1803 milliseconds

12