/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_logb_test.cpp | 56 EXPECT_TRUE(isinf(logb(HUGE_VAL))); in HWTEST_F() 57 EXPECT_TRUE(isinf(logb(-HUGE_VAL))); in HWTEST_F() 112 EXPECT_TRUE(isinf(logbf(HUGE_VAL))); in HWTEST_F() 113 EXPECT_TRUE(isinf(logbf(-HUGE_VAL))); in HWTEST_F() 154 EXPECT_TRUE(isinf(logbl(HUGE_VAL))); in HWTEST_F() 155 EXPECT_TRUE(isinf(logbl(-HUGE_VAL))); in HWTEST_F()
|
H A D | math_log1p_test.cpp | 57 EXPECT_TRUE(isinf(log1p(HUGE_VAL))); in HWTEST_F() 112 EXPECT_TRUE(isinf(log1pf(HUGE_VAL))); in HWTEST_F()
|
/third_party/musl/libc-test/src/math/ |
H A D | fpclassify.c | 95 if (!!isinf(tf[i].f) != (tf[i].class == FP_INFINITE)) in main() 96 error(tf[i], isinf); in main() 108 if (!!isinf(td[i].f) != (td[i].class == FP_INFINITE)) in main() 109 error(td[i], isinf); in main() 121 if (!!isinf(tl[i].f) != (tl[i].class == FP_INFINITE)) in main() 122 error(tl[i], isinf); in main()
|
/third_party/musl/src/complex/ |
H A D | cprojf.c | 5 if (isinf(crealf(z)) || isinf(cimagf(z))) in cprojf()
|
H A D | cproj.c | 5 if (isinf(creal(z)) || isinf(cimag(z))) in cproj()
|
H A D | cprojl.c | 11 if (isinf(creall(z)) || isinf(cimagl(z))) in cprojl()
|
H A D | csqrtf.c | 47 if (isinf(b)) in csqrtf() 53 if (isinf(a)) { in csqrtf()
|
H A D | csqrt.c | 55 if (isinf(b)) in csqrt() 61 if (isinf(a)) { in csqrt()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | _fixes.hpp | 22 #ifdef isinf 23 #undef isinf macro
|
/third_party/musl/libc-test/src/common/ |
H A D | mtest.c | 59 if (isinf(got)) { in ulperrf() 75 if (isinf(got)) { in ulperr() 94 if (isinf(got)) { in ulperrl()
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | generator_test.py | 85 # Python pre-2.6 does not have isinf() or isnan() functions, so we have 90 def isinf(val): function 94 self.assertTrue(isinf(message.inf_double)) 96 self.assertTrue(isinf(message.neg_inf_double)) 100 self.assertTrue(isinf(message.inf_float)) 102 self.assertTrue(isinf(message.neg_inf_float))
|
/third_party/jerryscript/jerry-libm/include/ |
H A D | math.h | 30 #define isinf(x) (((x) == INFINITY) || ((x) == -INFINITY)) macro 31 #define isfinite(x) (!(isinf(x)) && (x != NAN))
|
/third_party/cJSON/tests/unity/src/ |
H A D | unity.c | 280 else if (isinf(number)) UnityPrint("inf"); in UnityPrintFloat() 681 if (isinf(expected) && isinf(actual) && ((expected < 0) == (actual < 0))) return 1; \ 686 return !(isnan(diff) || isinf(diff) || (diff > delta)) 789 is_trait = isinf(actual) && (actual > 0); in UnityAssertFloatSpecial() 793 is_trait = isinf(actual) && (actual < 0); in UnityAssertFloatSpecial() 803 is_trait = !isinf(actual) && !isnan(actual); in UnityAssertFloatSpecial() 919 is_trait = isinf(actual) && (actual > 0); in UnityAssertDoubleSpecial() 923 is_trait = isinf(actual) && (actual < 0); in UnityAssertDoubleSpecial() 933 is_trait = !isinf(actua in UnityAssertDoubleSpecial() [all...] |
/third_party/python/Lib/test/ |
H A D | test_cmath.py | 118 if math.isinf(a): 568 self.assertFalse(cmath.isinf(1)) 569 self.assertFalse(cmath.isinf(1j)) 570 self.assertFalse(cmath.isinf(NAN)) 571 self.assertTrue(cmath.isinf(INF)) 572 self.assertTrue(cmath.isinf(complex(INF, 0))) 573 self.assertTrue(cmath.isinf(complex(0, INF))) 574 self.assertTrue(cmath.isinf(complex(INF, INF))) 575 self.assertTrue(cmath.isinf(complex(NAN, INF))) 576 self.assertTrue(cmath.isinf(comple [all...] |
/third_party/littlefs/scripts/ |
H A D | stack.py | 39 assert isinstance(x, int) or m.isinf(x), x 51 assert not m.isinf(self.x) 78 if m.isinf(new) and m.isinf(old): 80 elif m.isinf(new): 82 elif m.isinf(old): 477 if not summary and not m.isinf(depth): 502 if not m.isinf(depth) else 0), 633 m.isinf(float(r.limit)) for r in results):
|
H A D | structs.py | 44 assert isinstance(x, int) or m.isinf(x), x 56 assert not m.isinf(self.x) 83 if m.isinf(new) and m.isinf(old): 85 elif m.isinf(new): 87 elif m.isinf(old):
|
H A D | cov.py | 48 assert isinstance(x, int) or m.isinf(x), x 60 assert not m.isinf(self.x) 87 if m.isinf(new) and m.isinf(old): 89 elif m.isinf(new): 91 elif m.isinf(old):
|
H A D | code.py | 48 assert isinstance(x, int) or m.isinf(x), x 60 assert not m.isinf(self.x) 87 if m.isinf(new) and m.isinf(old): 89 elif m.isinf(new): 91 elif m.isinf(old):
|
/third_party/mesa3d/src/util/tests/ |
H A D | half_float_test.cpp | 52 EXPECT_TRUE(isinf(TEST_POS_INF)); in TEST() 53 EXPECT_TRUE(isinf(TEST_NEG_INF)); in TEST()
|
/third_party/ffmpeg/libavutil/ |
H A D | libm.h | 297 #undef isinf macro 317 #define isinf(x) \ macro 372 if (isinf(x) || isinf(y)) in hypot()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-number.cc | 46 if (std::isinf(value_number)) { in BUILTIN() 100 if (std::isinf(value_number)) { in BUILTIN() 174 if (std::isinf(value_number)) { 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 96 def isinf(val): function 100 self.assertTrue(isinf(message.inf_double)) 102 self.assertTrue(isinf(message.neg_inf_double)) 106 self.assertTrue(isinf(message.inf_float)) 108 self.assertTrue(isinf(message.neg_inf_float))
|
/third_party/optimized-routines/math/test/ |
H A D | ulp.h | 58 if (isinf (got)) 63 if (isinf (want)) 141 if (isinf (p->y)) in call_long_fenv() 163 if (isinf (p->y)) in call_long_nofenv()
|
/third_party/node/deps/v8/src/base/ |
H A D | qnx-math.h | 12 #undef isinf macro
|
/third_party/python/Include/ |
H A D | pymath.h | 36 #define Py_IS_INFINITY(X) isinf(X)
|