Home
last modified time | relevance | path

Searched refs:isposzero (Results 1 – 8 of 8) sorted by relevance

/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dmath_conformance.rs38 _RS_ASSERT(isposzero(rootn(0.f, 3)));
42 _RS_ASSERT(isposzero(rootn(0.f, 8)));
43 _RS_ASSERT(isposzero(rootn(-0.f, 8)));
Dshared.rsh84 static inline bool isposzero(float f) {
95 return isposzero(f) || isnegzero(f);
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dmath_conformance.rs20 _RS_ASSERT(isposzero(rootn(0.f, 3)));
24 _RS_ASSERT(isposzero(rootn(0.f, 8)));
25 _RS_ASSERT(isposzero(rootn(-0.f, 8)));
Dshared.rsh63 static inline bool isposzero(float f) {
74 return isposzero(f) || isnegzero(f);
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dmath_conformance.rs36 _RS_ASSERT(isposzero(rootn(0.f, 3)));
40 _RS_ASSERT(isposzero(rootn(0.f, 8)));
41 _RS_ASSERT(isposzero(rootn(-0.f, 8)));
Dshared.rsh82 static inline bool isposzero(float f) {
93 return isposzero(f) || isnegzero(f);
/frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
Dshared.rsh66 static inline bool isposzero(float f) {
77 return isposzero(f) || isnegzero(f);
/frameworks/rs/driver/runtime/
Drs_cl.c328 static bool isposzero(float f) { in isposzero() function
337 return isposzero(f) || isnegzero(f); in iszero()