Home
last modified time | relevance | path

Searched refs:math_errhandling (Results 1 – 25 of 147) sorted by relevance

123456

/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/test/src/math/
H A DRoundToIntegerTest.h17 #if math_errhandling & MATH_ERRNO
20 #if math_errhandling & MATH_ERREXCEPT
48 #if math_errhandling & MATH_ERRNO in testOneInput()
51 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
58 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
61 #if math_errhandling & MATH_ERRNO in testOneInput()
65 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
68 #if math_errhandling & MATH_ERRNO in testOneInput()
91 #if math_errhandling & MATH_ERREXCEPT in SetUp()
/dports/devel/llvm12/llvm-project-12.0.1.src/libc/test/src/math/
H A DRoundToIntegerTest.h18 #if math_errhandling & MATH_ERRNO
21 #if math_errhandling & MATH_ERREXCEPT
49 #if math_errhandling & MATH_ERRNO in testOneInput()
52 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
59 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
62 #if math_errhandling & MATH_ERRNO in testOneInput()
66 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
69 #if math_errhandling & MATH_ERRNO in testOneInput()
92 #if math_errhandling & MATH_ERREXCEPT in SetUp()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/test/src/math/
H A DRoundToIntegerTest.h17 #if math_errhandling & MATH_ERRNO
20 #if math_errhandling & MATH_ERREXCEPT
48 #if math_errhandling & MATH_ERRNO in testOneInput()
51 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
58 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
61 #if math_errhandling & MATH_ERRNO in testOneInput()
65 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
68 #if math_errhandling & MATH_ERRNO in testOneInput()
91 #if math_errhandling & MATH_ERREXCEPT in SetUp()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/test/src/math/
H A DRoundToIntegerTest.h17 #if math_errhandling & MATH_ERRNO
20 #if math_errhandling & MATH_ERREXCEPT
48 #if math_errhandling & MATH_ERRNO in testOneInput()
51 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
58 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
61 #if math_errhandling & MATH_ERRNO in testOneInput()
65 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
68 #if math_errhandling & MATH_ERRNO in testOneInput()
91 #if math_errhandling & MATH_ERREXCEPT in SetUp()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libc/test/src/math/
H A DRoundToIntegerTest.h18 #if math_errhandling & MATH_ERRNO
21 #if math_errhandling & MATH_ERREXCEPT
49 #if math_errhandling & MATH_ERRNO in testOneInput()
52 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
59 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
62 #if math_errhandling & MATH_ERRNO in testOneInput()
66 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
69 #if math_errhandling & MATH_ERRNO in testOneInput()
92 #if math_errhandling & MATH_ERREXCEPT in SetUp()
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/test/src/math/
H A DRoundToIntegerTest.h17 #if math_errhandling & MATH_ERRNO
20 #if math_errhandling & MATH_ERREXCEPT
48 #if math_errhandling & MATH_ERRNO in testOneInput()
51 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
58 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
61 #if math_errhandling & MATH_ERRNO in testOneInput()
65 #if math_errhandling & MATH_ERREXCEPT in testOneInput()
68 #if math_errhandling & MATH_ERRNO in testOneInput()
91 #if math_errhandling & MATH_ERREXCEPT in SetUp()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/tool/
H A Dmath.cxx23 assert((math_errhandling & (MATH_ERRNO | MATH_ERREXCEPT)) != 0); in err_pow()
55 if ((((math_errhandling & MATH_ERRNO) != 0) && (errno == EDOM || errno == ERANGE)) in power()
60 || (((math_errhandling & MATH_ERREXCEPT) != 0) in power()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/tool/
H A Dmath.cxx23 assert((math_errhandling & (MATH_ERRNO | MATH_ERREXCEPT)) != 0); in err_pow()
55 if ((((math_errhandling & MATH_ERRNO) != 0) && (errno == EDOM || errno == ERANGE)) in power()
56 || (((math_errhandling & MATH_ERREXCEPT) != 0) in power()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libc/config/linux/
H A Dapi.td92 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
94 #ifndef math_errhandling
96 #define math_errhandling 0
98 #define math_errhandling (MATH_ERREXCEPT)
100 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
102 #endif // math_errhandling not defined
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libc/config/linux/
H A Dapi.td89 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
91 #ifndef math_errhandling
93 #define math_errhandling 0
95 #define math_errhandling (MATH_ERREXCEPT)
97 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
99 #endif // math_errhandling not defined
/dports/devel/llvm12/llvm-project-12.0.1.src/libc/config/linux/
H A Dapi.td114 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
116 #ifndef math_errhandling
118 #define math_errhandling 0
120 #define math_errhandling (MATH_ERREXCEPT)
122 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
124 #endif // math_errhandling not defined
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libc/config/linux/
H A Dapi.td114 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
116 #ifndef math_errhandling
118 #define math_errhandling 0
120 #define math_errhandling (MATH_ERREXCEPT)
122 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
124 #endif // math_errhandling not defined
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/config/linux/
H A Dapi.td114 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
116 #ifndef math_errhandling
118 #define math_errhandling 0
120 #define math_errhandling (MATH_ERREXCEPT)
122 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
124 #endif // math_errhandling not defined
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/config/linux/
H A Dapi.td114 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
116 #ifndef math_errhandling
118 #define math_errhandling 0
120 #define math_errhandling (MATH_ERREXCEPT)
122 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
124 #endif // math_errhandling not defined
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/config/linux/
H A Dapi.td114 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
116 #ifndef math_errhandling
118 #define math_errhandling 0
120 #define math_errhandling (MATH_ERREXCEPT)
122 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
124 #endif // math_errhandling not defined
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/config/linux/
H A Dapi.td129 def MathErrHandlingMacro : MacroDef<"math_errhandling"> {
131 #ifndef math_errhandling
133 #define math_errhandling 0
135 #define math_errhandling (MATH_ERREXCEPT)
137 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT)
139 #endif // math_errhandling not defined
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DNearestIntegerOperations.h18 #if math_errhandling & MATH_ERRNO
248 #if math_errhandling & MATH_ERRNO in roundedFloatToSignedInteger()
251 #if math_errhandling & MATH_ERREXCEPT in roundedFloatToSignedInteger()
/dports/devel/llvm12/llvm-project-12.0.1.src/libc/utils/FPUtil/
H A DNearestIntegerOperations.h18 #if math_errhandling & MATH_ERRNO
249 #if math_errhandling & MATH_ERRNO in roundedFloatToSignedInteger()
252 #if math_errhandling & MATH_ERREXCEPT in roundedFloatToSignedInteger()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/src/__support/FPUtil/
H A DNearestIntegerOperations.h18 #if math_errhandling & MATH_ERRNO
248 #if math_errhandling & MATH_ERRNO in roundedFloatToSignedInteger()
251 #if math_errhandling & MATH_ERREXCEPT in roundedFloatToSignedInteger()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DNearestIntegerOperations.h18 #if math_errhandling & MATH_ERRNO
248 #if math_errhandling & MATH_ERRNO in roundedFloatToSignedInteger()
251 #if math_errhandling & MATH_ERREXCEPT in roundedFloatToSignedInteger()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libc/utils/FPUtil/
H A DNearestIntegerOperations.h18 #if math_errhandling & MATH_ERRNO
249 #if math_errhandling & MATH_ERRNO in roundedFloatToSignedInteger()
252 #if math_errhandling & MATH_ERREXCEPT in roundedFloatToSignedInteger()
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/utils/FPUtil/
H A DNearestIntegerOperations.h18 #if math_errhandling & MATH_ERRNO
248 #if math_errhandling & MATH_ERRNO in roundedFloatToSignedInteger()
251 #if math_errhandling & MATH_ERREXCEPT in roundedFloatToSignedInteger()
/dports/devel/tinygo/tinygo-0.14.1/lib/picolibc/newlib/libc/include/
H A Dmath.h189 #ifndef math_errhandling
190 # define math_errhandling MATH_ERRNO macro
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libc/src/math/
H A Dmath_utils.h58 if (math_errhandling & MATH_ERRNO)
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/src/math/generic/
H A Dmath_utils.h57 if (math_errhandling & MATH_ERRNO)

123456