Searched defs:sinV (Results 1 - 12 of 12) sorted by relevance

/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/gm/
H A Ddashing.cpp95 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
96 path->lineTo(cosV, sinV);
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));
/external/skia/gm/
H A Ddashing.cpp95 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); local
96 path->lineTo(cosV, sinV);
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));
/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
404 fMat[kMSkewX] = -sinV;
405 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
407 fMat[kMSkewY] = sinV;
409 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
417 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) { argument
419 fMat[kMSkewX] = -sinV;
422 fMat[kMSkewY] = sinV;
433 SkScalar sinV, cosV; local
434 sinV
439 SkScalar sinV, cosV; local
[all...]
/external/skia/src/core/
H A DSkMatrix.cpp399 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV, argument
404 fMat[kMSkewX] = -sinV;
405 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
407 fMat[kMSkewY] = sinV;
409 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
417 void SkMatrix::setSinCos(SkScalar sinV, SkScalar cosV) { argument
419 fMat[kMSkewX] = -sinV;
422 fMat[kMSkewY] = sinV;
433 SkScalar sinV, cosV; local
434 sinV
439 SkScalar sinV, cosV; local
[all...]

Completed in 602 milliseconds