Home
last modified time | relevance | path

Searched refs:isnan (Results 76 - 100 of 418) sorted by relevance

12345678910>>...17

/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-number.cc45 if (std::isnan(value_number)) return ReadOnlyRoots(isolate).NaN_string(); in BUILTIN()
99 if (std::isnan(value_number)) return ReadOnlyRoots(isolate).NaN_string(); in BUILTIN()
173 if (std::isnan(value_number)) return ReadOnlyRoots(isolate).NaN_string(); in BUILTIN()
/third_party/protobuf/python/google/protobuf/internal/
H A Dgenerator_test.py91 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
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))
/third_party/ffmpeg/libavfilter/tests/
H A Ddnn-layer-mathunary.c97 int output_nan = isnan(output[i]); in test()
98 int expected_nan = isnan(expected_output); in test()
/third_party/ffmpeg/tests/dnn/
H A Ddnn-layer-mathunary-test.c95 int output_nan = isnan(output[i]); in test()
96 int expected_nan = isnan(expected_output); in test()
/third_party/cJSON/tests/unity/src/
H A Dunity.c279 else if (isnan(number)) UnityPrint("nan"); in UnityPrintFloat()
686 return !(isnan(diff) || isinf(diff) || (diff > delta))
689 #define UNITY_NAN_CHECK isnan(expected) && isnan(actual)
798 is_trait = isnan(actual) ? 1 : 0; in UnityAssertFloatSpecial()
803 is_trait = !isinf(actual) && !isnan(actual); in UnityAssertFloatSpecial()
928 is_trait = isnan(actual) ? 1 : 0; in UnityAssertDoubleSpecial()
933 is_trait = !isinf(actual) && !isnan(actual); in UnityAssertDoubleSpecial()
/third_party/ffmpeg/libavutil/
H A Deval.c195 case e_isnan: return e->value * !!isnan(eval_expr(p, e->param[0])); in eval_expr()
211 if (isnan(min) || isnan(max) || isnan(x) || min > max) in eval_expr()
234 uint64_t r= isnan(p->var[idx]) ? 0 : p->var[idx]; in eval_expr()
294 if (isnan(v)) { in eval_expr()
326 case e_bitand: return isnan(d) || isnan(d2) ? NAN : e->value * ((long int)d & (long int)d2); in eval_expr()
327 case e_bitor: return isnan(d) || isnan(d in eval_expr()
[all...]
/third_party/jerryscript/jerry-libm/
H A Disnan.c30 /* isnan(x) returns 1 is x is nan, else 0;
35 isnan (double x) in isnan() function
44 } /* isnan */ in isnan()
/third_party/node/deps/v8/src/base/
H A Dqnx-math.h13 #undef isnan macro
/third_party/python/Include/
H A Dpymath.h32 #define Py_IS_NAN(X) isnan(X)
/third_party/musl/porting/liteos_a/kernel/include/
H A Dmath.h78 #define isnan(x) ( \ macro
102 #define isunordered(x,y) (isnan((x)) ? ((void)(y),1) : isnan((y)))
/third_party/musl/porting/uniproton/kernel/include/
H A Dmath.h78 #define isnan(x) ( \ macro
102 #define isunordered(x,y) (isnan((x)) ? ((void)(y),1) : isnan((y)))
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dpowl.c203 if (isnan(x)) { in powl()
204 if (!isnan(y) && y == 0.0) in powl()
208 if (isnan(y)) { in powl()
H A Dmodfl.c28 if (isnan(x)) in modfl()
/third_party/musl/porting/liteos_m/kernel/include/
H A Dmath.h78 #define isnan(x) ( \ macro
102 #define isunordered(x,y) (isnan((x)) ? ((void)(y),1) : isnan((y)))
/third_party/musl/src/math/
H A Dpowl.c203 if (isnan(x)) { in powl()
204 if (!isnan(y) && y == 0.0) in powl()
208 if (isnan(y)) { in powl()
H A Dmodfl.c28 if (isnan(x)) in modfl()
/third_party/musl/include/
H A Dmath.h78 #define isnan(x) ( \ macro
102 #define isunordered(x,y) (isnan((x)) ? ((void)(y),1) : isnan((y)))
/third_party/ffmpeg/libavfilter/
H A Dvf_tonemap.c71 if (isnan(s->param)) in init()
75 if (!isnan(s->param)) in init()
79 if (isnan(s->param)) in init()
84 if (isnan(s->param)) in init()
/third_party/astc-encoder/Source/UnitTest/
H A Dtest_softfloat.cpp63 EXPECT_TRUE(std::isnan(result)); in TEST()
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-posix-time.cc13 if (std::isnan(time)) return ""; in LocalTimezone()
/third_party/jerryscript/jerry-libm/include/
H A Dmath.h29 #define isnan(x) ((x) != (x)) macro
/third_party/musl/src/complex/
H A Dcsqrtf.c49 if (isnan(a)) { in csqrtf()
/test/xts/device_attest/services/core/attest/
H A Dattest_service_challenge.c94 if (isnan(errorCode)) { in ParseChallengeResult()
104 if (isnan((double)challenge->currentTime)) { in ParseChallengeResult()
/test/xts/device_attest_lite/services/core/attest/
H A Dattest_service_challenge.c94 if (isnan(errorCode)) { in ParseChallengeResult()
104 if (isnan((double)challenge->currentTime)) { in ParseChallengeResult()
/third_party/ffmpeg/libavcodec/
H A Dnoise_bsf.c153 if (isnan(res)) in noise()
163 if (isnan(res)) in noise()

Completed in 13 milliseconds

12345678910>>...17