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

/freebsd-13-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-13-stable/lib/msun/powerpc/
H A Dfenv.c40 extern inline int feclearexcept(int __excepts);
41 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
42 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
43 extern inline int feraiseexcept(int __excepts);
44 extern inline int fetestexcept(int __excepts);
H A Dfenv.h123 feclearexcept(int __excepts) argument
127 if (__excepts & FE_INVALID)
128 __excepts |= FE_ALL_INVALID;
130 __r.__bits.__reg &= ~__excepts;
136 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
141 *__flagp = __r.__bits.__reg & __excepts;
146 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
150 if (__excepts & FE_INVALID)
151 __excepts |= FE_ALL_INVALID;
153 __r.__bits.__reg &= ~__excepts;
160 feraiseexcept(int __excepts) argument
173 fetestexcept(int __excepts) argument
[all...]
/freebsd-13-stable/lib/msun/arm/
H A Dfenv.c79 extern inline int feclearexcept(int __excepts);
80 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
81 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
82 extern inline int feraiseexcept(int __excepts);
83 extern inline int fetestexcept(int __excepts);
98 int __softfp_feclearexcept(int __excepts);
99 int __softfp_fegetexceptflag(fexcept_t *__flagp, int __excepts);
100 int __softfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts);
101 int __softfp_feraiseexcept(int __excepts);
102 int __softfp_fetestexcept(int __excepts);
162 feclearexcept(int __excepts) argument
172 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
186 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
196 feraiseexcept(int __excepts) argument
206 fetestexcept(int __excepts) argument
[all...]
H A Dfenv.h91 int feclearexcept(int __excepts);
92 int fegetexceptflag(fexcept_t *__flagp, int __excepts);
93 int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
94 int feraiseexcept(int __excepts);
95 int fetestexcept(int __excepts);
116 feclearexcept(int __excepts) argument
121 __fpsr &= ~__excepts;
127 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
132 *__flagp = __fpsr & __excepts;
137 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
149 feraiseexcept(int __excepts) argument
158 fetestexcept(int __excepts) argument
[all...]
/freebsd-13-stable/lib/msun/src/
H A Dfenv-softfloat.h63 feclearexcept(int __excepts) argument
66 __softfloat_float_exception_flags &= ~__excepts;
71 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
74 *__flagp = __softfloat_float_exception_flags & __excepts;
79 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
82 __softfloat_float_exception_flags &= ~__excepts;
83 __softfloat_float_exception_flags |= *__flagp & __excepts;
88 feraiseexcept(int __excepts) argument
91 __softfloat_float_raise(__excepts);
96 fetestexcept(int __excepts) argument
[all...]
/freebsd-13-stable/lib/msun/riscv/
H A Dfenv.h90 int feclearexcept(int __excepts);
91 int fegetexceptflag(fexcept_t *__flagp, int __excepts);
92 int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
93 int feraiseexcept(int __excepts);
94 int fetestexcept(int __excepts);
103 feclearexcept(int __excepts) argument
106 __asm __volatile("csrc fflags, %0" :: "r"(__excepts));
112 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
117 *__flagp = __fcsr & __excepts;
123 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
135 feraiseexcept(int __excepts) argument
144 fetestexcept(int __excepts) argument
[all...]
H A Dfenv.c50 extern inline int feclearexcept(int __excepts);
51 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
52 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
53 extern inline int feraiseexcept(int __excepts);
54 extern inline int fetestexcept(int __excepts);
/freebsd-13-stable/lib/msun/mips/
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);
102 feclearexcept(int __excepts) argument
106 __excepts &= FE_ALL_EXCEPT;
108 fcsr &= ~(__excepts | (__excepts << _FCSR_CAUSE_SHIFT));
115 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
127 fesetexceptflag(const fexcept_t *__flagp, int __excepts) argument
141 feraiseexcept(int __excepts) argument
154 fetestexcept(int __excepts) argument
[all...]
H A Dfenv.c55 extern inline int feclearexcept(int __excepts);
56 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
57 extern inline int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
58 extern inline int feraiseexcept(int __excepts);
59 extern inline int fetestexcept(int __excepts);
/freebsd-13-stable/lib/msun/x86/
H A Dfenv.h108 int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
109 int feraiseexcept(int __excepts);
169 feclearexcept(int __excepts) argument
174 if (__excepts == FE_ALL_EXCEPT) {
178 __env.__status &= ~__excepts;
183 __mxcsr &= ~__excepts;
190 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
200 *__flagp = (__mxcsr | __status) & __excepts;
205 fetestexcept(int __excepts) argument
215 return ((__status | __mxcsr) & __excepts);
267 feclearexcept(int __excepts) argument
285 fegetexceptflag(fexcept_t *__flagp, int __excepts) argument
297 fetestexcept(int __excepts) argument
[all...]
/freebsd-13-stable/lib/msun/amd64/
H A Dfenv.c52 extern inline int feclearexcept(int __excepts);
53 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
83 extern inline int fetestexcept(int __excepts);
/freebsd-13-stable/lib/msun/i387/
H A Dfenv.c94 extern inline int feclearexcept(int __excepts);
95 extern inline int fegetexceptflag(fexcept_t *__flagp, int __excepts);
128 extern inline int fetestexcept(int __excepts);

Completed in 63 milliseconds