Searched refs:anyTrue (Results 1 - 7 of 7) sorted by relevance
/third_party/skia/tests/ |
H A 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/skia/src/core/ |
H A D | SkPathRef.cpp | 656 ((point < leftTop).anyTrue() || (point > rightBot).anyTrue())) { 669 if (fPoints[i].isFinite() && (point < leftTop).anyTrue() && !(point > rightBot).anyTrue())
|
/third_party/skia/include/private/ |
H A D | SkNx.h | 110 AI bool anyTrue() const { return fLo.anyTrue() || fHi.anyTrue(); } in anyTrue() function 218 AI bool anyTrue() const { return fVal != 0; } in anyTrue() function
|
H A D | SkNx_neon.h | 137 AI bool anyTrue() const { in anyTrue() function in __anon18470::SkNx 270 AI bool anyTrue() const { in anyTrue() function in __anon18470::SkNx
|
H A D | SkNx_sse.h | 111 AI bool anyTrue() const { return 0b00 != (_mm_movemask_ps(fVec) & 0b11); } in anyTrue() function in __anon18480::SkNx 214 AI bool anyTrue() const { return 0b0000 != _mm_movemask_ps(fVec); } in anyTrue() function in __anon18480::SkNx
|
/third_party/skia/modules/skottie/src/animator/ |
H A D | VectorKeyframeAnimator.cpp | 118 changed |= (new_val != old_val).anyTrue();
|
/third_party/skia/dm/ |
H A D | DM.cpp | 1242 if (a > 1.0f || (rgba < 0.0f).anyTrue() || (rgba > a).anyTrue()) { in Run()
|
Completed in 12 milliseconds