Home
last modified time | relevance | path

Searched refs:isnegzero (Results 1 – 7 of 7) sorted by relevance

/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dshared.rsh68 static inline bool isnegzero(float f) {
74 return isposzero(f) || isnegzero(f);
Dmath_conformance.rscript21 _RS_ASSERT(isnegzero(rootn(-0.f, 3)));
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dshared.rsh87 static inline bool isnegzero(float f) {
93 return isposzero(f) || isnegzero(f);
Dmath_conformance.rscript37 _RS_ASSERT(isnegzero(rootn(-0.f, 3)));
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dshared.rsh89 static inline bool isnegzero(float f) {
95 return isposzero(f) || isnegzero(f);
Dmath_conformance.rscript39 _RS_ASSERT(isnegzero(rootn(-0.f, 3)));
/frameworks/rs/driver/runtime/
Drs_cl.c332 static bool isnegzero(float f) { in isnegzero() function
337 return isposzero(f) || isnegzero(f); in iszero()