Searched refs:isnan (Results 1 – 18 of 18) sorted by relevance
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | math_conformance.rscript | 28 _RS_ASSERT(isnan(rootn(-10000.f, -4))); 29 _RS_ASSERT(isnan(rootn(-10000.f, 4))); 32 _RS_ASSERT(!isnan(rootn(-10000.f, -3))); 33 _RS_ASSERT(!isnan(rootn(-10000.f, 3)));
|
D | shared.rsh | 58 static inline bool isnan(float f) {
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | math_conformance.rscript | 44 _RS_ASSERT(isnan(rootn(-10000.f, -4))); 45 _RS_ASSERT(isnan(rootn(-10000.f, 4))); 48 _RS_ASSERT(!isnan(rootn(-10000.f, -3))); 49 _RS_ASSERT(!isnan(rootn(-10000.f, 3)));
|
D | shared.rsh | 77 static inline bool isnan(float f) {
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | math_conformance.rscript | 46 _RS_ASSERT(isnan(rootn(-10000.f, -4))); 47 _RS_ASSERT(isnan(rootn(-10000.f, 4))); 50 _RS_ASSERT(!isnan(rootn(-10000.f, -3))); 51 _RS_ASSERT(!isnan(rootn(-10000.f, 3)));
|
D | shared.rsh | 79 static inline bool isnan(float f) {
|
/frameworks/native/libs/input/tests/ |
D | LatencyStatistics_test.cpp | 34 ASSERT_EQ(std::isnan(stats.getStDev()), true); in TEST() 35 ASSERT_EQ(std::isnan(stats.getMean()), true); in TEST()
|
D | VelocityTracker_test.cpp | 81 return !(isnan(x) && isnan(y)); in isValid()
|
/frameworks/ml/nn/tools/systrace_parser/parser/ |
D | aggregate.py | 108 if math.isnan(times[phase][layer]): 128 if math.isnan(times[app_phase][phase][layer]): 152 if math.isnan(f):
|
/frameworks/native/services/surfaceflinger/TimeStats/timestatsproto/ |
D | TimeStatsHelper.cpp | 123 std::isnan(averageFrameDuration) ? 0.0f : averageFrameDuration); in toString() 128 std::isnan(averageRenderEngineTiming) ? 0.0f : averageRenderEngineTiming); in toString()
|
/frameworks/native/services/inputflinger/ |
D | InputListener.cpp | 158 return (isnan(lhs) && isnan(rhs)) || lhs == rhs; in isCursorPositionEqual()
|
/frameworks/native/include/input/ |
D | Input.h | 542 static inline bool isValidCursorPosition(float x, float y) { return !isnan(x) && !isnan(y); } in isValidCursorPosition()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_HardwarePropertiesManagerService.cpp | 83 return isnan(temperature) ? gUndefinedTemperature : temperature; in finalizeTemperature()
|
/frameworks/compile/mclinker/include/mcld/Config/ |
D | Config.h.cmake | 207 /* Set to 1 if the isnan function is found in <cmath> */ 210 /* Set to 1 if the isnan function is found in <math.h> */ 392 /* Set to 1 if the std::isnan function is found in <cmath> */
|
/frameworks/ml/nn/tools/test_generator/test_harness/ |
D | TestHarness.cpp | 80 EXPECT_FALSE(std::isnan(expected)); in expectNear()
|
/frameworks/av/include/media/ |
D | VolumeShaper.h | 872 if (!std::isnan(xOffset)) { in applyVolumeShaper()
|
/frameworks/rs/driver/runtime/ |
D | rs_cl.c | 323 static bool isnan(float f) { in isnan() function 697 if (!isinf(v) && !isnan(v) && (v < 0.f)) { in FN_FUNC_FN()
|
/frameworks/av/services/audioflinger/ |
D | AudioFlinger.cpp | 1124 if (isnan(balance) || fabs(balance) > 1.f) { in setMasterBalance()
|