HomeSort by relevance Sort by last modified time
    Searched refs:Sk2s (Results 1 - 20 of 20) sorted by null

  /external/skia/src/core/
SkCubicMap.cpp 13 Sk2s s1 = Sk2s::Load(&p1) * 3;
14 Sk2s s2 = Sk2s::Load(&p2) * 3;
16 s1 = Sk2s::Min(Sk2s::Max(s1, 0), 3);
17 s2 = Sk2s::Min(Sk2s::Max(s2, 0), 3);
19 (Sk2s(1) + s1 - s2).store(&fCoeff[0]);
27 Sk2s a = Sk2s::Load(&fCoeff[0])
    [all...]
SkGeometry.h 14 static inline Sk2s from_point(const SkPoint& point) {
15 return Sk2s::Load(&point);
18 static inline SkPoint to_point(const Sk2s& x) {
24 static Sk2s times_2(const Sk2s& value) {
318 SkQuadCoeff(const Sk2s& A, const Sk2s& B, const Sk2s& C)
327 Sk2s P1 = from_point(src[1]);
328 Sk2s P2 = from_point(src[2])
    [all...]
SkGeometry.cpp 14 static SkVector to_vector(const Sk2s& x) {
129 Sk2s P0 = from_point(src[0]);
130 Sk2s P1 = from_point(src[1]);
131 Sk2s P2 = from_point(src[2]);
133 Sk2s B = P1 - P0;
134 Sk2s A = P2 - P1 - B;
135 Sk2s T = A * Sk2s(t) + B;
140 static inline Sk2s interp(const Sk2s& v0, const Sk2s& v1, const Sk2s& t)
    [all...]
SkScan_Hairline.cpp 225 Sk2s t(0);
226 Sk2s dt(SK_Scalar1 / lines);
232 Sk2s A = coeff.fA;
233 Sk2s B = coeff.fB;
234 Sk2s C = coeff.fC;
246 Sk2s min = Sk2s::Load(pts);
247 Sk2s max = min;
249 Sk2s pair = Sk2s::Load(pts+i)
    [all...]
SkMatrixPriv.h 96 Sk2s trans(tx, ty);
98 (Sk2s::Load(&pts->fX) + trans).store(&pts->fX);
SkPathRef.cpp 852 Sk2s leftTop = Sk2s(fBounds.fLeft, fBounds.fTop);
853 Sk2s rightBot = Sk2s(fBounds.fRight, fBounds.fBottom);
855 Sk2s point = Sk2s(fPoints[i].fX, fPoints[i].fY);
SkNx.h 378 typedef SkNx<2, SkScalar> Sk2s;
SkPath.cpp     [all...]
  /external/skqp/src/core/
SkCubicMap.cpp 13 Sk2s s1 = Sk2s::Load(&p1) * 3;
14 Sk2s s2 = Sk2s::Load(&p2) * 3;
16 s1 = Sk2s::Min(Sk2s::Max(s1, 0), 3);
17 s2 = Sk2s::Min(Sk2s::Max(s2, 0), 3);
19 (Sk2s(1) + s1 - s2).store(&fCoeff[0]);
27 Sk2s a = Sk2s::Load(&fCoeff[0])
    [all...]
SkGeometry.h 14 static inline Sk2s from_point(const SkPoint& point) {
15 return Sk2s::Load(&point);
18 static inline SkPoint to_point(const Sk2s& x) {
24 static Sk2s times_2(const Sk2s& value) {
318 SkQuadCoeff(const Sk2s& A, const Sk2s& B, const Sk2s& C)
327 Sk2s P1 = from_point(src[1]);
328 Sk2s P2 = from_point(src[2])
    [all...]
SkGeometry.cpp 14 static SkVector to_vector(const Sk2s& x) {
129 Sk2s P0 = from_point(src[0]);
130 Sk2s P1 = from_point(src[1]);
131 Sk2s P2 = from_point(src[2]);
133 Sk2s B = P1 - P0;
134 Sk2s A = P2 - P1 - B;
135 Sk2s T = A * Sk2s(t) + B;
140 static inline Sk2s interp(const Sk2s& v0, const Sk2s& v1, const Sk2s& t)
    [all...]
SkScan_Hairline.cpp 225 Sk2s t(0);
226 Sk2s dt(SK_Scalar1 / lines);
232 Sk2s A = coeff.fA;
233 Sk2s B = coeff.fB;
234 Sk2s C = coeff.fC;
246 Sk2s min = Sk2s::Load(pts);
247 Sk2s max = min;
249 Sk2s pair = Sk2s::Load(pts+i)
    [all...]
SkMatrixPriv.h 96 Sk2s trans(tx, ty);
98 (Sk2s::Load(&pts->fX) + trans).store(&pts->fX);
SkPathRef.cpp 834 Sk2s leftTop = Sk2s(fBounds.fLeft, fBounds.fTop);
835 Sk2s rightBot = Sk2s(fBounds.fRight, fBounds.fBottom);
837 Sk2s point = Sk2s(fPoints[i].fX, fPoints[i].fY);
SkNx.h 378 typedef SkNx<2, SkScalar> Sk2s;
SkPath.cpp     [all...]
  /external/skia/src/utils/
SkPatchUtils.cpp 85 Sk2s h = Sk2s(1.f / fDivisions);
86 Sk2s h2 = h * h;
87 Sk2s h3 = h2 * h;
88 Sk2s fwDiff3 = Sk2s(6) * fCoefs.fA * h3;
  /external/skqp/src/utils/
SkPatchUtils.cpp 85 Sk2s h = Sk2s(1.f / fDivisions);
86 Sk2s h2 = h * h;
87 Sk2s h3 = h2 * h;
88 Sk2s fwDiff3 = Sk2s(6) * fCoefs.fA * h3;
  /external/skia/src/gpu/
GrTessellator.cpp 709 Sk2s aa = quad.fA * quad.fA;
711 Sk2s ab = quad.fA * quad.fB;
    [all...]
  /external/skqp/src/gpu/
GrTessellator.cpp 709 Sk2s aa = quad.fA * quad.fA;
711 Sk2s ab = quad.fA * quad.fB;
    [all...]

Completed in 363 milliseconds