/external/llvm-project/libc/test/src/fenv/ |
D | exception_status_test.cpp | 25 int excepts[] = {FE_DIVBYZERO, FE_INVALID, FE_INEXACT, FE_OVERFLOW, in TEST() local 27 for (int e : excepts) { in TEST() 39 for (int e1 : excepts) { in TEST() 40 for (int e2 : excepts) { in TEST() 54 for (int e1 : excepts) { in TEST() 55 for (int e2 : excepts) { in TEST() 56 for (int e3 : excepts) { in TEST() 71 for (int e1 : excepts) { in TEST() 72 for (int e2 : excepts) { in TEST() 73 for (int e3 : excepts) { in TEST() [all …]
|
D | enabled_exceptions_test.cpp | 27 int excepts[] = {FE_DIVBYZERO, FE_INVALID, FE_INEXACT, FE_OVERFLOW, in TEST() local 30 for (int e : excepts) { in TEST()
|
/external/llvm-project/libc/utils/FPUtil/x86_64/ |
D | FEnv.h | 59 static inline uint16_t getStatusValueForExcept(int excepts) { in getStatusValueForExcept() argument 62 return (excepts & FE_INVALID ? ExceptionFlags::Invalid : 0) | in getStatusValueForExcept() 63 (excepts & FE_DIVBYZERO ? ExceptionFlags::DivByZero : 0) | in getStatusValueForExcept() 64 (excepts & FE_OVERFLOW ? ExceptionFlags::Overflow : 0) | in getStatusValueForExcept() 65 (excepts & FE_UNDERFLOW ? ExceptionFlags::Underflow : 0) | in getStatusValueForExcept() 66 (excepts & FE_INEXACT ? ExceptionFlags::Inexact : 0); in getStatusValueForExcept() 128 static inline int enableExcept(int excepts) { in enableExcept() argument 134 uint16_t bitMask = internal::getStatusValueForExcept(excepts); in enableExcept() 155 static inline int disableExcept(int excepts) { in disableExcept() argument 159 uint16_t bitMask = internal::getStatusValueForExcept(excepts); in disableExcept() [all …]
|
/external/llvm-project/flang/runtime/ |
D | stop.cpp | 22 auto excepts{fetestexcept(FE_ALL_EXCEPT)}; in DescribeIEEESignaledExceptions() local 24 auto excepts{std::fetestexcept(FE_ALL_EXCEPT)}; in DescribeIEEESignaledExceptions() 26 if (excepts) { in DescribeIEEESignaledExceptions() 28 if (excepts & FE_DIVBYZERO) { in DescribeIEEESignaledExceptions() 31 if (excepts & FE_INEXACT) { in DescribeIEEESignaledExceptions() 34 if (excepts & FE_INVALID) { in DescribeIEEESignaledExceptions() 37 if (excepts & FE_OVERFLOW) { in DescribeIEEESignaledExceptions() 40 if (excepts & FE_UNDERFLOW) { in DescribeIEEESignaledExceptions()
|
/external/adhd/cras/src/dsp/tests/ |
D | dsp_test_util.c | 26 int excepts = fetestexcept(FE_ALL_EXCEPT); in dsp_util_print_fp_exceptions() local 28 if (excepts & FE_DIVBYZERO) in dsp_util_print_fp_exceptions() 30 if (excepts & FE_INVALID) in dsp_util_print_fp_exceptions() 32 if (excepts & FE_OVERFLOW) in dsp_util_print_fp_exceptions() 34 if (excepts & FE_UNDERFLOW) in dsp_util_print_fp_exceptions()
|
/external/libcxx/include/ |
D | cfenv | 41 int feclearexcept(int excepts); 42 int fegetexceptflag(fexcept_t* flagp, int excepts); 43 int feraiseexcept(int excepts); 44 int fesetexceptflag(const fexcept_t* flagp, int excepts); 45 int fetestexcept(int excepts);
|
/external/llvm-project/libcxx/include/ |
D | cfenv | 40 int feclearexcept(int excepts); 41 int fegetexceptflag(fexcept_t* flagp, int excepts); 42 int feraiseexcept(int excepts); 43 int fesetexceptflag(const fexcept_t* flagp, int excepts); 44 int fetestexcept(int excepts);
|
/external/OpenCL-CTS/test_common/harness/ |
D | compat.h | 102 int fetestexcept(int excepts); 103 int feclearexcept(int excepts);
|
D | msvc9.c | 580 int fetestexcept(int excepts) in fetestexcept() argument 583 return excepts in fetestexcept() 591 int feclearexcept(int excepts) in feclearexcept() argument
|
/external/curl/lib/ |
D | select.h | 94 fd_set* excepts, struct timeval *tv);
|
D | select.c | 461 fd_set *excepts, struct timeval *tv) in tpf_select_libcurl() argument 465 rc = tpf_select_bsd(maxfds, reads, writes, excepts, tv); in tpf_select_libcurl()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0a3.rst | 233 Got rid of bare excepts in the turtle module. Original patch by Jelle
|
D | 3.5.3rc1.rst | 1391 Got rid of bare excepts in the turtle module. Original patch by Jelle
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.13rc1.rst | 678 Got rid of bare excepts in the turtle module. Original patch by Jelle
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/ |
D | ospd.txt.gz |
|