/external/llvm-project/libc/test/src/fenv/ |
D | exception_status_test.cpp | 30 int s = __llvm_libc::fetestexcept(e); in TEST() 35 s = __llvm_libc::fetestexcept(e); in TEST() 44 int s = __llvm_libc::fetestexcept(e); in TEST() 49 s = __llvm_libc::fetestexcept(e); in TEST() 60 int s = __llvm_libc::fetestexcept(e); in TEST() 65 s = __llvm_libc::fetestexcept(e); in TEST() 78 int s = __llvm_libc::fetestexcept(e); in TEST() 83 s = __llvm_libc::fetestexcept(e); in TEST() 98 int s = __llvm_libc::fetestexcept(e); in TEST() 103 s = __llvm_libc::fetestexcept(e); in TEST() [all …]
|
D | CMakeLists.txt | 23 libc.src.fenv.fetestexcept 40 libc.src.fenv.fetestexcept
|
D | enabled_exceptions_test.cpp | 41 ASSERT_EQ(__llvm_libc::fetestexcept(others), others); in TEST()
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | test_FCOMI.c | 86 if (fetestexcept(FE_INVALID) != 0) { in test() 115 if (fetestexcept(FE_INVALID) != FE_INVALID) { in test_qnan() 144 if (fetestexcept(FE_INVALID) != 0) { in testu_qnan() 176 if (fetestexcept(FE_INVALID) != FE_INVALID) { in testu_snan() 230 if (fetestexcept(FE_INVALID) != 0) { in testp() 258 if (fetestexcept(FE_INVALID) != FE_INVALID) { in testp_qnan() 286 if (fetestexcept(FE_INVALID) != 0) { in testup_qnan()
|
D | test_FISTTP.c | 43 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 67 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 96 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 121 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test()
|
/external/llvm-project/libc/src/fenv/ |
D | CMakeLists.txt | 54 fetestexcept 56 fetestexcept.cpp 58 fetestexcept.h
|
D | fetestexcept.h | 14 int fetestexcept(int);
|
D | fetestexcept.cpp | 14 int LLVM_LIBC_ENTRYPOINT(fetestexcept)(int e) { return fputil::testExcept(e); } in LLVM_LIBC_ENTRYPOINT() argument
|
/external/rust/crates/libm/src/math/ |
D | fmaf.rs | 32 feclearexcept, fegetround, feraiseexcept, fesetround, fetestexcept, FE_INEXACT, FE_TONEAREST, 75 if e < 0x3ff - 126 && e >= 0x3ff - 149 && fetestexcept(FE_INEXACT) != 0 { in fmaf() 80 if fetestexcept(FE_INEXACT) != 0 { in fmaf()
|
D | fenv.rs | 21 pub(crate) fn fetestexcept(_mask: i32) -> i32 { in fetestexcept() function
|
/external/llvm-project/flang/runtime/ |
D | stop.cpp | 21 #ifdef fetestexcept // a macro in some environments; omit std:: in DescribeIEEESignaledExceptions() 22 auto excepts{fetestexcept(FE_ALL_EXCEPT)}; in DescribeIEEESignaledExceptions() 24 auto excepts{std::fetestexcept(FE_ALL_EXCEPT)}; in DescribeIEEESignaledExceptions()
|
/external/llvm-project/libcxx/include/ |
D | fenv.h | 83 #ifdef fetestexcept 84 #undef fetestexcept
|
D | cfenv | 44 int fetestexcept(int excepts); 71 using ::fetestexcept;
|
/external/libcxx/include/ |
D | cfenv | 45 int fetestexcept(int excepts); 72 using ::fetestexcept;
|
/external/OpenCL-CTS/test_conformance/math_brute_force/ |
D | ternary_float.cpp | 385 FE_OVERFLOW == (FE_OVERFLOW & fetestexcept(FE_OVERFLOW)); in TestFunc_Float_Float_Float_Float() 469 if (fetestexcept(FE_OVERFLOW)) continue; in TestFunc_Float_Float_Float_Float() 523 if (fetestexcept(FE_OVERFLOW)) continue; in TestFunc_Float_Float_Float_Float() 601 if (fetestexcept(FE_OVERFLOW)) continue; in TestFunc_Float_Float_Float_Float() 664 if (fetestexcept(FE_OVERFLOW)) continue; in TestFunc_Float_Float_Float_Float() 718 if (fetestexcept(FE_OVERFLOW)) continue; in TestFunc_Float_Float_Float_Float() 781 if (fetestexcept(FE_OVERFLOW)) continue; in TestFunc_Float_Float_Float_Float()
|
D | unary_two_results_float.cpp | 283 FE_OVERFLOW == (FE_OVERFLOW & fetestexcept(FE_OVERFLOW)); in TestFunc_Float2_Float() 440 if (fetestexcept(FE_OVERFLOW)) continue; in TestFunc_Float2_Float()
|
/external/adhd/cras/src/dsp/tests/ |
D | dsp_test_util.c | 26 int excepts = fetestexcept(FE_ALL_EXCEPT); in dsp_util_print_fp_exceptions()
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | fenv_h.pass.cpp | 68 static_assert((std::is_same<decltype(::fetestexcept(0)), int>::value), ""); in main()
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | fenv_h.pass.cpp | 69 static_assert((std::is_same<decltype(fetestexcept(0)), int>::value), ""); in main()
|
/external/libcxx/test/std/numerics/cfenv/cfenv.syn/ |
D | cfenv.pass.cpp | 71 static_assert((std::is_same<decltype(std::fetestexcept(0)), int>::value), ""); in main()
|
/external/llvm-project/libcxx/test/std/numerics/cfenv/cfenv.syn/ |
D | cfenv.pass.cpp | 70 static_assert((std::is_same<decltype(std::fetestexcept(0)), int>::value), ""); in main()
|
/external/llvm-project/flang/unittests/Evaluate/ |
D | fp-testing.cpp | 77 int exceptions = fetestexcept(FE_ALL_EXCEPT); in CurrentFlags()
|
/external/llvm-project/flang/lib/Evaluate/ |
D | host.cpp | 115 int exceptions{fetestexcept(FE_ALL_EXCEPT)}; in CheckAndRestoreFloatingPointEnvironment()
|
/external/arm-optimized-routines/math/test/ |
D | ulp.h | 109 *ex = fetestexcept (FE_ALL_EXCEPT); in T() 134 p->ex = fetestexcept (FE_ALL_EXCEPT); in T()
|
/external/llvm-project/libc/AOR_v20.02/math/test/ |
D | ulp.h | 110 *ex = fetestexcept (FE_ALL_EXCEPT); in T() 135 p->ex = fetestexcept (FE_ALL_EXCEPT); in T()
|