Searched refs:isnan (Results 1 – 22 of 22) sorted by relevance
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | math_conformance.rs | 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/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | math_conformance.rs | 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.rs | 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/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | generator_test.py | 93 def isnan(val): function 98 return not isnan(val) and isnan(val * 0) 104 self.assertTrue(isnan(message.nan_double)) 110 self.assertTrue(isnan(message.nan_float))
|
D | message_test.py | 79 def isnan(val): function 84 return not isnan(val) and isnan(val * 0) 191 self.assertTrue(isnan(golden_message.optional_float)) 192 self.assertTrue(isnan(golden_message.optional_double)) 193 self.assertTrue(isnan(golden_message.repeated_float[0])) 194 self.assertTrue(isnan(golden_message.repeated_double[0])) 203 self.assertTrue(isnan(message.optional_float)) 204 self.assertTrue(isnan(message.optional_double)) 205 self.assertTrue(isnan(message.repeated_float[0])) 206 self.assertTrue(isnan(message.repeated_double[0])) [all …]
|
D | json_format_test.py | 618 self.assertTrue(math.isnan(parsed_message.float_value))
|
/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/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/ |
D | mathutil.h | 52 return isnan(value); in IsNan() 60 return isnan(value); in IsNan()
|
D | mathlimits.h | 233 static bool IsFinite(const Type x) { return !isinf(x) && !isnan(x); } \ 234 static bool IsNaN(const Type x) { return isnan(x); } \
|
/frameworks/ml/nn/runtime/test/fuzzing/ |
D | RandomGraphGenerator.cpp | 295 if (std::isnan(expected) || std::isinf(expected) || std::isnan(actual) || in expectNear()
|
/frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/ |
D | shared.rsh | 61 static inline bool isnan(float f) {
|
/frameworks/native/libs/input/tests/ |
D | VelocityTracker_test.cpp | 81 return !(isnan(x) && isnan(y)); in isValid()
|
/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/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/ |
D | json_format.py | 216 if math.isnan(value):
|
/frameworks/av/include/media/ |
D | VolumeShaper.h | 872 if (!std::isnan(xOffset)) { in applyVolumeShaper()
|
/frameworks/native/opengl/libagl/ |
D | matrix.cpp | 1115 if (isnan(f[i]) || isinf(f[i])) { in glQueryMatrixxOES()
|
/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 | 1033 if (isnan(balance) || fabs(balance) > 1.f) { in setMasterBalance()
|