/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-number.cc | 45 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 D | generator_test.py | 91 # 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 D | dnn-layer-mathunary.c | 97 int output_nan = isnan(output[i]); in test() 98 int expected_nan = isnan(expected_output); in test()
|
/third_party/ffmpeg/tests/dnn/ |
H A D | dnn-layer-mathunary-test.c | 95 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 D | unity.c | 279 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 D | eval.c | 195 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 D | isnan.c | 30 /* 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 D | qnx-math.h | 13 #undef isnan macro
|
/third_party/python/Include/ |
H A D | pymath.h | 32 #define Py_IS_NAN(X) isnan(X)
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 78 #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 D | math.h | 78 #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 D | powl.c | 203 if (isnan(x)) { in powl() 204 if (!isnan(y) && y == 0.0) in powl() 208 if (isnan(y)) { in powl()
|
H A D | modfl.c | 28 if (isnan(x)) in modfl()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 78 #define isnan(x) ( \ macro 102 #define isunordered(x,y) (isnan((x)) ? ((void)(y),1) : isnan((y)))
|
/third_party/musl/src/math/ |
H A D | powl.c | 203 if (isnan(x)) { in powl() 204 if (!isnan(y) && y == 0.0) in powl() 208 if (isnan(y)) { in powl()
|
H A D | modfl.c | 28 if (isnan(x)) in modfl()
|
/third_party/musl/include/ |
H A D | math.h | 78 #define isnan(x) ( \ macro 102 #define isunordered(x,y) (isnan((x)) ? ((void)(y),1) : isnan((y)))
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_tonemap.c | 71 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 D | test_softfloat.cpp | 63 EXPECT_TRUE(std::isnan(result)); in TEST()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-posix-time.cc | 13 if (std::isnan(time)) return ""; in LocalTimezone()
|
/third_party/jerryscript/jerry-libm/include/ |
H A D | math.h | 29 #define isnan(x) ((x) != (x)) macro
|
/third_party/musl/src/complex/ |
H A D | csqrtf.c | 49 if (isnan(a)) { in csqrtf()
|
/test/xts/device_attest/services/core/attest/ |
H A D | attest_service_challenge.c | 94 if (isnan(errorCode)) { in ParseChallengeResult() 104 if (isnan((double)challenge->currentTime)) { in ParseChallengeResult()
|
/test/xts/device_attest_lite/services/core/attest/ |
H A D | attest_service_challenge.c | 94 if (isnan(errorCode)) { in ParseChallengeResult() 104 if (isnan((double)challenge->currentTime)) { in ParseChallengeResult()
|
/third_party/ffmpeg/libavcodec/ |
H A D | noise_bsf.c | 153 if (isnan(res)) in noise() 163 if (isnan(res)) in noise()
|