/third_party/musl/libc-test/src/functionalext/supplement/math/ |
H A D | finite.c | 25 * @tc.desc : The parameter is 0.0, it is judged that the parameter is a finite value. 30 int ret = finite(0.0); in finite_0100() 36 * @tc.desc : The parameter is DBL_MIN/2.0, and it is judged that the parameter is a finite value 41 int ret = finite(__DBL_MIN__ / 2); in finite_0200() 47 * @tc.desc : If the parameter is NAN, it is judged that the parameter is not a finite value. 52 int ret = finite(NAN); in finite_0300() 58 * @tc.desc : If the parameter is INFINITY, it is judged that the parameter is not a finite value. 63 int ret = finite(INFINITY); in finite_0400() 69 * @tc.desc : If the parameter is sqrt(-1.0), it is judged that the parameter is not a finite value. 74 int ret = finite(sqr in finite_0500() [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_finite_test.cpp | 18 EXPECT_TRUE(finite(100.0)); in HWTEST_F() 28 EXPECT_FALSE(finite(HUGE_VAL)); in HWTEST_F() 29 EXPECT_FALSE(finite(-HUGE_VAL)); in HWTEST_F()
|
/third_party/skia/tests/ |
H A D | ScalarTest.cpp | 92 // return true if the float is finite 103 // return true if both floats are finite 173 bool finite = gProc1[k](rec.fValue); in test_isfinite() local 174 REPORTER_ASSERT(reporter, rec.fIsFinite == finite); in test_isfinite() 186 bool finite = gProc2[m](rec0.fValue, rec1.fValue, proc1); in test_isfinite() local 188 REPORTER_ASSERT(reporter, finite2 == finite); in test_isfinite()
|
/third_party/musl/src/math/ |
H A D | finite.c | 4 int finite(double x) in finite() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | finite.c | 4 int finite(double x) in finite() function
|
/third_party/jerryscript/jerry-libm/ |
H A D | finite.c | 30 /* finite(x) returns 1 is x is finite, else 0; 35 finite (double x) in finite() function 41 } /* finite */ in finite()
|
H A D | jerry-libm-internal.h | 116 int finite (double x);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
H A D | mutex_test.cc | 1310 // The `finite` delay is a finite, relatively short, delay. We make it larger 1313 const absl::Duration finite = 3 * TimeoutTestAllowedSchedulingDelay(); local 1338 finite, // satisfy_condition_delay 1368 finite, // satisfy_condition_delay 1370 finite, // expected_delay 1373 // Tests with a (small) finite timeout (deadline soon), with the condition 1388 finite * 2, // wait_timeout 1389 finite, // satisfy_condition_delay 1391 finite // expected_dela [all...] |
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
H A D | tarith.c | 85 int finite = 0; in validation_ascii_to_fp() local 116 ++finite; in validation_ascii_to_fp() 260 printf("Tested %d finite values, %d non-finite, %d OK (%d failed) %d minor " in validation_ascii_to_fp() 261 "arithmetic errors\n", finite, nonfinite, ok, failcount, minorarith); in validation_ascii_to_fp()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | OptimalIntrinsics.cpp | 19 Float4 Reciprocal(RValue<Float4> x, bool pp = false, bool finite = false, bool exactAtPow2 = false) in Reciprocal() 28 if(finite) in Reciprocal()
|
H A D | Reactor.cpp | 4671 static RValue<T> DoRcp(RValue<T> x, Precision p, bool finite, bool exactAtPow2) 4696 if(finite) 4705 RValue<Float4> Rcp(RValue<Float4> x, Precision p, bool finite, bool exactAtPow2) 4708 return DoRcp(x, p, finite, exactAtPow2); 4711 RValue<Float> Rcp(RValue<Float> x, Precision p, bool finite, bool exactAtPow2) 4714 return DoRcp(x, p, finite, exactAtPow2);
|
H A D | Reactor.hpp | 2183 RValue<Float> Rcp(RValue<Float> x, Precision p = Precision::Full, bool finite = false, bool exactAtPow2 = false); 2354 RValue<Float4> Rcp(RValue<Float4> x, Precision p = Precision::Full, bool finite = false, bool exactAtPow2 = false);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 401 int finite(double);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 401 int finite(double);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 401 int finite(double);
|
/third_party/musl/include/ |
H A D | math.h | 401 int finite(double);
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | ShaderCore.hpp | 191 Float4 reciprocal(RValue<Float4> x, bool pp = false, bool finite = false, bool exactAtPow2 = false);
|
H A D | ShaderCore.cpp | 225 Float4 reciprocal(RValue<Float4> x, bool pp, bool finite, bool exactAtPow2) in reciprocal() argument 227 return Rcp(x, pp ? Precision::Relaxed : Precision::Full, finite, exactAtPow2); in reciprocal()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | ShaderCore.hpp | 64 Float4 reciprocal(RValue<Float4> x, bool pp = false, bool finite = false, bool exactAtPow2 = false);
|
H A D | ShaderCore.cpp | 187 Float4 reciprocal(RValue<Float4> x, bool pp, bool finite, bool exactAtPow2) in reciprocal() argument 205 if(finite) in reciprocal() 279 // Assumes x is a finite floating point value
|
/third_party/protobuf/conformance/third_party/jsoncpp/ |
H A D | jsoncpp.cpp | 3994 #define isfinite finite 3999 #define isfinite finite 4003 #if defined(__ia64) && !defined(finite) 4008 #define isfinite finite
|
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/ |
H A D | jsoncpp.cpp | 3960 #define isfinite finite
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/ |
H A D | jsoncpp.cpp | 3960 #define isfinite finite
|
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | libwebp_python_wrap.c | 3596 # define SWIG_isfinite(X) (finite(X)) 3601 /* Accept infinite as a valid float value unless we are unable to check if a value is finite */
|
/third_party/spirv-headers/tools/buildHeaders/jsoncpp/dist/ |
H A D | jsoncpp.cpp | 3960 #define isfinite finite
|