Searched refs:cosV (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/skia/gm/
H A Dhairlines.cpp154 SkScalar cosV, sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle), &cosV); variable
156 SkPoint p0 = SkPoint::Make(kRad * cosV, kRad * sinV);
158 sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle + kSweepAngle), &cosV);
160 SkPoint p1 = SkPoint::Make(kRad * cosV, kRad * sinV);
H A Dpathfill.cpp82 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
83 path->lineTo(c + SkScalarMul(cosV, r), c + SkScalarMul(sinV, r));
H A Ddashing.cpp95 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
96 path->lineTo(cosV, sinV);
/external/skia/gm/
H A Dhairlines.cpp154 SkScalar cosV, sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle), &cosV); variable
156 SkPoint p0 = SkPoint::Make(kRad * cosV, kRad * sinV);
158 sinV = SkScalarSinCos(SkDegreesToRadians(kStartAngle + kSweepAngle), &cosV);
160 SkPoint p1 = SkPoint::Make(kRad * cosV, kRad * sinV);
H A Dpathfill.cpp82 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
83 path->lineTo(c + SkScalarMul(cosV, r), c + SkScalarMul(sinV, r));
H A Ddashing.cpp95 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
96 path->lineTo(cosV, sinV);
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePathFill.cpp85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
86 path->lineTo(c + SkScalarMul(cosV, r), c + SkScalarMul(sinV, r));
/external/skia/samplecode/
H A DSamplePathFill.cpp85 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
86 path->lineTo(c + SkScalarMul(cosV, r), c + SkScalarMul(sinV, r));
/external/chromium_org/third_party/skia/bench/
H A DDashBench.cpp148 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
149 path->lineTo(cosV, sinV);
/external/skia/bench/
H A DDashBench.cpp148 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
149 path->lineTo(cosV, sinV);
/external/chromium_org/third_party/skia/src/core/
H A DSkMatrix.cpp399 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, argument
401 const SkScalar oneMinusCosV = 1 - cosV;
403 fMat[kMScaleX] = cosV;
408 fMat[kMScaleY] = cosV;
417 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) { argument
418 fMat[kMScaleX] = cosV;
423 fMat[kMScaleY] = cosV;
433 SkScalar sinV, cosV; local
434 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
435 this->setSinCos(sinV, cosV, p
439 SkScalar sinV, cosV; local
[all...]
/external/skia/src/core/
H A DSkMatrix.cpp399 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, argument
401 const SkScalar oneMinusCosV = 1 - cosV;
403 fMat[kMScaleX] = cosV;
408 fMat[kMScaleY] = cosV;
417 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) { argument
418 fMat[kMScaleX] = cosV;
423 fMat[kMScaleY] = cosV;
433 SkScalar sinV, cosV; local
434 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV);
435 this->setSinCos(sinV, cosV, p
439 SkScalar sinV, cosV; local
[all...]

Completed in 225 milliseconds