Searched refs:Sk4s (Results 1 - 9 of 9) sorted by relevance

/external/skia/src/core/
H A DSkLinearBitmapPipeline_matrix.h20 void processPoints(Sk4s* xs, Sk4s* ys) const {
42 void processPoints(Sk4s* xs, Sk4s* ys) const {
69 void processPoints(Sk4s* xs, Sk4s* ys) const {
70 Sk4s newXs = fXScale * *xs + fXSkew * *ys + fXOffset;
71 Sk4s newYs = fYSkew * *xs + fYScale * *ys + fYOffset;
95 void processPoints(Sk4s* xs, Sk4s* y
[all...]
H A DSkLinearBitmapPipeline_tile.h19 void assertTiled(const Sk4s& vs, SkScalar vMax) {
38 void tileXPoints(Sk4s* xs) {
39 *xs = Sk4s::Min(Sk4s::Max(*xs, SK_ScalarHalf), fXMaxPixel);
131 void tileYPoints(Sk4s* ys) {
132 *ys = Sk4s::Min(Sk4s::Max(*ys, SK_ScalarHalf), fYMaxPixel);
159 void tileXPoints(Sk4s* xs) {
160 Sk4s divX = *xs * fXInvMax;
161 Sk4s mod
[all...]
H A DSkRect.cpp51 static inline bool is_finite(const Sk4s& value) {
52 auto finite = value * Sk4s(0) == Sk4s(0);
64 Sk4s min, max, accum;
67 min = Sk4s(pts[0].fX, pts[0].fY, pts[0].fX, pts[0].fY);
71 min = Sk4s::Load(pts);
76 accum = accum * Sk4s(0);
80 Sk4s xy = Sk4s::Load(pts);
82 min = Sk4s
[all...]
H A DSkLinearBitmapPipeline_core.h165 Sk4s dXs{0.0f};
203 virtual void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4s ys) = 0;
205 virtual void SK_VECTORCALL pointList4(Sk4s xs, Sk4s ys) = 0;
H A DSkLinearBitmapPipeline.cpp49 void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4s ys) override {
54 void SK_VECTORCALL pointList4(Sk4s xs, Sk4s ys) override {
101 void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4s ys) override {
107 void SK_VECTORCALL pointList4(Sk4s xs, Sk4s ys) override {
155 void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4s y
[all...]
H A DSkLinearBitmapPipeline_sample.h43 static Sk4s SK_VECTORCALL bilerp4(Sk4s xs, Sk4s ys, Sk4f px00, Sk4f px10,
46 Sk4s fxs = xs - xs.floor();
47 Sk4s fys = ys - ys.floor();
48 Sk4s fxys{fxs * fys};
346 void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4s ys) override {
355 void SK_VECTORCALL pointList4(Sk4s xs, Sk4s y
[all...]
H A DSkMatrix.cpp927 Sk4s trans4(tx, ty, tx, ty);
930 (Sk4s::Load(src) + trans4).store(dst);
936 (Sk4s::Load(src+0) + trans4).store(dst+0);
937 (Sk4s::Load(src+2) + trans4).store(dst+2);
957 Sk4s trans4(tx, ty, tx, ty);
958 Sk4s scale4(sx, sy, sx, sy);
961 (Sk4s::Load(src) * scale4 + trans4).store(dst);
967 (Sk4s::Load(src+0) * scale4 + trans4).store(dst+0);
968 (Sk4s::Load(src+2) * scale4 + trans4).store(dst+2);
1018 Sk4s trans
[all...]
H A DSkNx.h343 typedef SkNx<4, SkScalar> Sk4s; typedef
/external/skia/tests/
H A DSkLinearBitmapPipelineTest.cpp118 void SK_VECTORCALL pointListFew(int n, Sk4s xs, Sk4s ys) {
125 void SK_VECTORCALL pointList4(Sk4s xs, Sk4s ys) {

Completed in 147 milliseconds