/third_party/skia/tests/ |
D | SkNxTest.cpp | 62 REPORTER_ASSERT(r, (a+b == a*b-b).anyTrue()); in test_Nf() 64 REPORTER_ASSERT(r, !(a+b == a*b).anyTrue()); in test_Nf() 65 REPORTER_ASSERT(r, !(a != b).anyTrue()); in test_Nf() 66 REPORTER_ASSERT(r, (a < fours).anyTrue()); in test_Nf() 67 REPORTER_ASSERT(r, (a <= fours).anyTrue()); in test_Nf() 507 REPORTER_ASSERT(r, (Sk2f{1,2} < Sk2f{3,4}).anyTrue()); in DEF_TEST() 509 REPORTER_ASSERT(r, (Sk2f{3,2} < Sk2f{1,4}).anyTrue()); in DEF_TEST() 511 REPORTER_ASSERT(r, !(Sk2f{3,4} < Sk2f{1,2}).anyTrue()); in DEF_TEST() 513 REPORTER_ASSERT(r, (Sk4f{1,2,3,4} < Sk4f{3,4,5,6}).anyTrue()); in DEF_TEST() 515 REPORTER_ASSERT(r, (Sk4f{1,2,3,4} < Sk4f{1,4,1,1}).anyTrue()); in DEF_TEST() [all …]
|
/third_party/flutter/skia/tests/ |
D | SkNxTest.cpp | 65 REPORTER_ASSERT(r, (a+b == a*b-b).anyTrue()); in test_Nf() 67 REPORTER_ASSERT(r, !(a+b == a*b).anyTrue()); in test_Nf() 68 REPORTER_ASSERT(r, !(a != b).anyTrue()); in test_Nf() 69 REPORTER_ASSERT(r, (a < fours).anyTrue()); in test_Nf() 70 REPORTER_ASSERT(r, (a <= fours).anyTrue()); in test_Nf() 501 REPORTER_ASSERT(r, (Sk2f{1,2} < Sk2f{3,4}).anyTrue()); in DEF_TEST() 503 REPORTER_ASSERT(r, (Sk2f{3,2} < Sk2f{1,4}).anyTrue()); in DEF_TEST() 505 REPORTER_ASSERT(r, !(Sk2f{3,4} < Sk2f{1,2}).anyTrue()); in DEF_TEST() 507 REPORTER_ASSERT(r, (Sk4f{1,2,3,4} < Sk4f{3,4,5,6}).anyTrue()); in DEF_TEST() 509 REPORTER_ASSERT(r, (Sk4f{1,2,3,4} < Sk4f{1,4,1,1}).anyTrue()); in DEF_TEST() [all …]
|
/third_party/skia/src/core/ |
D | SkPathRef.cpp | 656 ((point < leftTop).anyTrue() || (point > rightBot).anyTrue())) { in isValid() 669 … if (fPoints[i].isFinite() && (point < leftTop).anyTrue() && !(point > rightBot).anyTrue()) in isValid()
|
/third_party/flutter/skia/src/core/ |
D | SkPathRef.cpp | 921 ((point < leftTop).anyTrue() || (point > rightBot).anyTrue())) { in isValid() 934 … if (fPoints[i].isFinite() && (point < leftTop).anyTrue() && !(point > rightBot).anyTrue()) in isValid()
|
/third_party/flutter/skia/src/gpu/ccpr/ |
D | GrCCPathCache.cpp | 56 if ((Sk4f::Load(a.fMatrix2x2) != Sk4f::Load(b.fMatrix2x2)).anyTrue()) { in fuzzy_equals() 61 Sk2f::Load(b.fSubpixelTranslate)).abs() > 1.f/256).anyTrue()) { in fuzzy_equals()
|
D | GrCCFillGeometry.cpp | 200 SkASSERT((p0 != p2).anyTrue()); in appendMonotonicQuadratic() 620 SkASSERT((p0 != p3).anyTrue()); in appendCubics() 776 SkASSERT((p0 != p2).anyTrue()); in appendMonotonicConic()
|
/third_party/flutter/skia/include/private/ |
D | SkNx.h | 110 AI bool anyTrue() const { return fLo.anyTrue() || fHi.anyTrue(); } in anyTrue() function 220 AI bool anyTrue() const { return fVal != 0; }
|
D | SkNx_neon.h | 148 AI bool anyTrue() const { in anyTrue() function 292 AI bool anyTrue() const { in anyTrue() function
|
D | SkNx_sse.h | 113 AI bool anyTrue() const { return 0x00 != (_mm_movemask_epi8(_mm_castps_si128(fVec)) & 0xff); } in anyTrue() function 218 AI bool anyTrue() const { return 0x0000 != _mm_movemask_epi8(_mm_castps_si128(fVec)); } in anyTrue() function
|
/third_party/skia/include/private/ |
D | SkNx.h | 110 AI bool anyTrue() const { return fLo.anyTrue() || fHi.anyTrue(); } in anyTrue() function 218 AI bool anyTrue() const { return fVal != 0; }
|
D | SkNx_neon.h | 137 AI bool anyTrue() const { in anyTrue() function 270 AI bool anyTrue() const { in anyTrue() function
|
D | SkNx_sse.h | 111 AI bool anyTrue() const { return 0b00 != (_mm_movemask_ps(fVec) & 0b11); } in anyTrue() function 214 AI bool anyTrue() const { return 0b0000 != _mm_movemask_ps(fVec); } in anyTrue() function
|
/third_party/skia/modules/skottie/src/animator/ |
D | VectorKeyframeAnimator.cpp | 118 changed |= (new_val != old_val).anyTrue(); in onSeek()
|
/third_party/flutter/skia/dm/ |
D | DM.cpp | 1200 if (a > 1.0f || (rgba < 0.0f).anyTrue() || (rgba > a).anyTrue()) { in Run()
|
/third_party/skia/dm/ |
D | DM.cpp | 1242 if (a > 1.0f || (rgba < 0.0f).anyTrue() || (rgba > a).anyTrue()) { in Run()
|