Searched refs:__excepts (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/lib/msun/aarch64/
H A Dfenv.c43 extern inline int feclearexcept(int __excepts);
44 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
45 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
46 extern inline int feraiseexcept(int __excepts);
47 extern inline int fetestexcept(int __excepts);
H A Dfenv.h81 feclearexcept(int __excepts) argument
86 __r &= ~__excepts;
92 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
97 *__flagp = __r & __excepts;
102 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
107 __r &= ~__excepts;
108 __r |= *__flagp & __excepts;
114 feraiseexcept(int __excepts) argument
119 __r |= __excepts;
125 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/mips/
H A Dfenv.c42 extern inline int feclearexcept(int __excepts);
43 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
44 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
45 extern inline int feraiseexcept(int __excepts);
46 extern inline int fetestexcept(int __excepts);
H A Dfenv.h76 feclearexcept(int __excepts) argument
81 __fpsr &= ~__excepts;
87 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
92 *__flagp = __fpsr & __excepts;
97 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
102 __fpsr &= ~__excepts;
103 __fpsr |= *__flagp & __excepts;
109 feraiseexcept(int __excepts) argument
111 fexcept_t __ex = __excepts;
113 fesetexceptflag(&__ex, __excepts); /* XX
118 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/powerpc/
H A Dfenv.c38 extern inline int feclearexcept(int __excepts);
39 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
40 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
41 extern inline int feraiseexcept(int __excepts);
42 extern inline int fetestexcept(int __excepts);
H A Dfenv.h111 feclearexcept(int __excepts) argument
115 if (__excepts & FE_INVALID)
116 __excepts |= FE_ALL_INVALID;
118 __r.__bits.__reg &= ~__excepts;
124 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
129 *__flagp = __r.__bits.__reg & __excepts;
134 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
138 if (__excepts & FE_INVALID)
139 __excepts |= FE_ALL_EXCEPT;
141 __r.__bits.__reg &= ~__excepts;
148 feraiseexcept(int __excepts) argument
161 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/riscv/
H A Dfenv.c42 extern inline int feclearexcept(int __excepts);
43 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
44 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
45 extern inline int feraiseexcept(int __excepts);
46 extern inline int fetestexcept(int __excepts);
H A Dfenv.h84 feclearexcept(int __excepts) argument
89 __fpsr &= ~__excepts;
95 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
100 *__flagp = __fpsr & __excepts;
105 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
110 __fpsr &= ~__excepts;
111 __fpsr |= *__flagp & __excepts;
117 feraiseexcept(int __excepts) argument
119 fexcept_t __ex = __excepts;
121 fesetexceptflag(&__ex, __excepts); /* XX
126 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/sparc64/
H A Dfenv.c43 extern inline int feclearexcept(int __excepts);
44 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
45 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
46 extern inline int feraiseexcept(int __excepts);
47 extern inline int fetestexcept(int __excepts);
H A Dfenv.h78 feclearexcept(int __excepts) argument
83 __r &= ~__excepts;
89 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
94 *__flagp = __r & __excepts;
99 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
104 __r &= ~__excepts;
105 __r |= *__flagp & __excepts;
116 feraiseexcept(int __excepts) argument
127 if (__excepts & FE_INVALID) {
131 if (__excepts
151 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/arm/
H A Dfenv.c77 extern inline int feclearexcept(int __excepts);
78 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
79 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
80 extern inline int feraiseexcept(int __excepts);
81 extern inline int fetestexcept(int __excepts);
96 int __softfp_feclearexcept(int __excepts);
97 int __softfp_fegetexceptflag(fexcept_t *__flagp, int __excepts);
98 int __softfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts);
99 int __softfp_feraiseexcept(int __excepts);
100 int __softfp_fetestexcept(int __excepts);
160 feclearexcept(int __excepts) argument
170 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
184 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
194 feraiseexcept(int __excepts) argument
204 fetestexcept(int __excepts) argument
[all...]
H A Dfenv.h89 int feclearexcept(int __excepts);
90 int fegetexceptflag(fexcept_t *__flagp, int __excepts);
91 int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
92 int feraiseexcept(int __excepts);
93 int fetestexcept(int __excepts);
114 feclearexcept(int __excepts) argument
119 __fpsr &= ~__excepts;
125 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
130 *__flagp = __fpsr & __excepts;
135 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
147 feraiseexcept(int __excepts) argument
156 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/src/
H A Dfenv-softfloat.h61 feclearexcept(int __excepts) argument
64 __softfloat_float_exception_flags &= ~__excepts;
69 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
72 *__flagp = __softfloat_float_exception_flags & __excepts;
77 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
80 __softfloat_float_exception_flags &= ~__excepts;
81 __softfloat_float_exception_flags |= *__flagp & __excepts;
86 feraiseexcept(int __excepts) argument
89 __softfloat_float_raise(__excepts);
94 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/x86/
H A Dfenv.h106 int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
107 int feraiseexcept(int __excepts);
167 feclearexcept(int __excepts) argument
172 if (__excepts == FE_ALL_EXCEPT) {
176 __env.__status &= ~__excepts;
181 __mxcsr &= ~__excepts;
188 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
198 *__flagp = (__mxcsr | __status) & __excepts;
203 fetestexcept(int __excepts) argument
213 return ((__status | __mxcsr) & __excepts);
265 feclearexcept(int __excepts) argument
283 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
295 fetestexcept(int __excepts) argument
[all...]
/freebsd-11-stable/lib/msun/amd64/
H A Dfenv.c50 extern inline int feclearexcept(int __excepts);
51 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
81 extern inline int fetestexcept(int __excepts);
/freebsd-11-stable/lib/msun/i387/
H A Dfenv.c92 extern inline int feclearexcept(int __excepts);
93 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
126 extern inline int fetestexcept(int __excepts);

Completed in 174 milliseconds