Searched refs:__excepts (Results 1 – 7 of 7) sorted by relevance
| /freebsd/lib/msun/arm/ |
| H A D | fenv.c | 169 int __softfp_feclearexcept(int __excepts); 170 int __softfp_fegetexceptflag(fexcept_t *__flagp, int __excepts); 171 int __softfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts); 172 int __softfp_feraiseexcept(int __excepts); 173 int __softfp_fetestexcept(int __excepts); 186 int __vfp_feclearexcept(int __excepts); 187 int __vfp_fegetexceptflag(fexcept_t *__flagp, int __excepts); 188 int __vfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts); 189 int __vfp_feraiseexcept(int __excepts); 190 int __vfp_fetestexcept(int __excepts); [all …]
|
| H A D | fenv.h | 95 int feclearexcept(int __excepts); 96 int fegetexceptflag(fexcept_t *__flagp, int __excepts); 97 int fesetexceptflag(const fexcept_t *__flagp, int __excepts); 98 int feraiseexcept(int __excepts); 99 int fetestexcept(int __excepts); 171 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 176 __fpsr &= ~__excepts; in __feclearexcept_int() 182 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 187 *__flagp = __fpsr & __excepts; in __fegetexceptflag_int() 192 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument [all …]
|
| /freebsd/lib/msun/src/ |
| H A D | fenv-softfloat.h | 63 feclearexcept(int __excepts) in feclearexcept() argument 66 __softfloat_float_exception_flags &= ~__excepts; in feclearexcept() 71 fegetexceptflag(fexcept_t *__flagp, int __excepts) in fegetexceptflag() argument 74 *__flagp = __softfloat_float_exception_flags & __excepts; in fegetexceptflag() 79 fesetexceptflag(const fexcept_t *__flagp, int __excepts) in fesetexceptflag() argument 82 __softfloat_float_exception_flags &= ~__excepts; in fesetexceptflag() 83 __softfloat_float_exception_flags |= *__flagp & __excepts; in fesetexceptflag() 88 feraiseexcept(int __excepts) in feraiseexcept() argument 91 __softfloat_float_raise(__excepts); in feraiseexcept() 96 fetestexcept(int __excepts) in fetestexcept() argument [all …]
|
| /freebsd/lib/msun/x86/ |
| H A D | fenv.h | 121 int fesetexceptflag(const fexcept_t *__flagp, int __excepts); 122 int feraiseexcept(int __excepts); 210 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 215 if (__excepts == FE_ALL_EXCEPT) { in __feclearexcept_int() 219 __env.__status &= ~__excepts; in __feclearexcept_int() 224 __mxcsr &= ~__excepts; in __feclearexcept_int() 231 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 241 *__flagp = (__mxcsr | __status) & __excepts; in __fegetexceptflag_int() 246 __fetestexcept_int(int __excepts) in __fetestexcept_int() argument 256 return ((__status | __mxcsr) & __excepts); in __fetestexcept_int() [all …]
|
| /freebsd/lib/msun/powerpc/ |
| H A D | fenv.h | 158 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 162 if (__excepts & FE_INVALID) in __feclearexcept_int() 163 __excepts |= FE_ALL_INVALID; in __feclearexcept_int() 165 __r.__bits.__reg &= ~__excepts; in __feclearexcept_int() 171 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 176 *__flagp = __r.__bits.__reg & __excepts; in __fegetexceptflag_int() 181 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument 185 if (__excepts & FE_INVALID) in __fesetexceptflag_int() 186 __excepts |= FE_ALL_INVALID; in __fesetexceptflag_int() 188 __r.__bits.__reg &= ~__excepts; in __fesetexceptflag_int() [all …]
|
| /freebsd/lib/msun/riscv/ |
| H A D | fenv.h | 126 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 129 __asm __volatile("csrc fflags, %0" :: "r"(__excepts)); in __feclearexcept_int() 135 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 140 *__flagp = __fcsr & __excepts; in __fegetexceptflag_int() 146 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument 151 __asm __volatile("csrc fflags, %0" :: "r"(__excepts)); in __fesetexceptflag_int() 152 __asm __volatile("csrs fflags, %0" :: "r"(__fcsr & __excepts)); in __fesetexceptflag_int() 158 __feraiseexcept_int(int __excepts) in __feraiseexcept_int() argument 161 __asm __volatile("csrs fflags, %0" :: "r"(__excepts)); in __feraiseexcept_int() 167 __fetestexcept_int(int __excepts) in __fetestexcept_int() argument [all …]
|
| /freebsd/lib/msun/aarch64/ |
| H A D | fenv.h | 134 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 139 __r &= ~__excepts; in __feclearexcept_int() 145 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 150 *__flagp = __r & __excepts; in __fegetexceptflag_int() 155 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument 160 __r &= ~__excepts; in __fesetexceptflag_int() 161 __r |= *__flagp & __excepts; in __fesetexceptflag_int() 167 __feraiseexcept_int(int __excepts) in __feraiseexcept_int() argument 172 __r |= __excepts; in __feraiseexcept_int() 178 __fetestexcept_int(int __excepts) in __fetestexcept_int() argument [all …]
|