Home
last modified time | relevance | path

Searched refs:anyTrue (Results 1 – 5 of 5) sorted by relevance

/external/skia/tests/
DSkNxTest.cpp65 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()
/external/skia/src/core/
DSkPathRef.cpp765 ((point < leftTop).anyTrue() || (point > rightBot).anyTrue())) { in validate()
778 (!(point < leftTop).anyTrue() && !(point > rightBot).anyTrue())); in validate()
DSkNx.h87 AI bool anyTrue() const { return fLo.anyTrue() || fHi.anyTrue(); } in anyTrue() function
176 AI bool anyTrue() const { return fVal != 0; }
/external/skia/src/opts/
DSkNx_neon.h95 AI bool anyTrue() const { in anyTrue() function
201 AI bool anyTrue() const { in anyTrue() function
DSkNx_sse.h58 AI bool anyTrue() const { return 0x00 != (_mm_movemask_epi8(_mm_castps_si128(fVec)) & 0xff); } in anyTrue() function
140 AI bool anyTrue() const { return 0x0000 != _mm_movemask_epi8(_mm_castps_si128(fVec)); } in anyTrue() function