Searched refs:__excepts (Results 1 – 7 of 7) sorted by relevance
| /freebsd/lib/msun/arm/ |
| H A D | fenv.c | 156 int __softfp_feclearexcept(int __excepts); 157 int __softfp_fegetexceptflag(fexcept_t *__flagp, int __excepts); 158 int __softfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts); 159 int __softfp_feraiseexcept(int __excepts); 160 int __softfp_fetestexcept(int __excepts); 171 int __vfp_feclearexcept(int __excepts); 172 int __vfp_fegetexceptflag(fexcept_t *__flagp, int __excepts); 173 int __vfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts); 174 int __vfp_feraiseexcept(int __excepts); 175 int __vfp_fetestexcept(int __excepts); [all …]
|
| H A D | fenv.h | 90 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); 150 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 155 __fpsr &= ~__excepts; in __feclearexcept_int() 161 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 166 *__flagp = __fpsr & __excepts; in __fegetexceptflag_int() 171 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument [all …]
|
| /freebsd/lib/msun/src/ |
| H A D | fenv-softfloat.h | 61 feclearexcept(int __excepts) in feclearexcept() argument 64 __softfloat_float_exception_flags &= ~__excepts; in feclearexcept() 69 fegetexceptflag(fexcept_t *__flagp, int __excepts) in fegetexceptflag() argument 72 *__flagp = __softfloat_float_exception_flags & __excepts; in fegetexceptflag() 77 fesetexceptflag(const fexcept_t *__flagp, int __excepts) in fesetexceptflag() argument 80 __softfloat_float_exception_flags &= ~__excepts; in fesetexceptflag() 81 __softfloat_float_exception_flags |= *__flagp & __excepts; in fesetexceptflag() 86 feraiseexcept(int __excepts) in feraiseexcept() argument 89 __softfloat_float_raise(__excepts); in feraiseexcept() 94 fetestexcept(int __excepts) in fetestexcept() argument [all …]
|
| /freebsd/lib/msun/x86/ |
| H A D | fenv.h | 106 int fesetexceptflag(const fexcept_t *__flagp, int __excepts); 107 int feraiseexcept(int __excepts); 181 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 186 if (__excepts == FE_ALL_EXCEPT) { in __feclearexcept_int() 190 __env.__status &= ~__excepts; in __feclearexcept_int() 195 __mxcsr &= ~__excepts; in __feclearexcept_int() 202 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 212 *__flagp = (__mxcsr | __status) & __excepts; in __fegetexceptflag_int() 217 __fetestexcept_int(int __excepts) in __fetestexcept_int() argument 227 return ((__status | __mxcsr) & __excepts); in __fetestexcept_int() [all …]
|
| /freebsd/lib/msun/powerpc/ |
| H A D | fenv.h | 139 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 143 if (__excepts & FE_INVALID) in __feclearexcept_int() 144 __excepts |= FE_ALL_INVALID; in __feclearexcept_int() 146 __r.__bits.__reg &= ~__excepts; in __feclearexcept_int() 152 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 157 *__flagp = __r.__bits.__reg & __excepts; in __fegetexceptflag_int() 162 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument 166 if (__excepts & FE_INVALID) in __fesetexceptflag_int() 167 __excepts |= FE_ALL_INVALID; in __fesetexceptflag_int() 169 __r.__bits.__reg &= ~__excepts; in __fesetexceptflag_int() [all …]
|
| /freebsd/lib/msun/riscv/ |
| H A D | fenv.h | 107 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 110 __asm __volatile("csrc fflags, %0" :: "r"(__excepts)); in __feclearexcept_int() 116 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 121 *__flagp = __fcsr & __excepts; in __fegetexceptflag_int() 127 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument 132 __asm __volatile("csrc fflags, %0" :: "r"(__excepts)); in __fesetexceptflag_int() 133 __asm __volatile("csrs fflags, %0" :: "r"(__fcsr & __excepts)); in __fesetexceptflag_int() 139 __feraiseexcept_int(int __excepts) in __feraiseexcept_int() argument 142 __asm __volatile("csrs fflags, %0" :: "r"(__excepts)); in __feraiseexcept_int() 148 __fetestexcept_int(int __excepts) in __fetestexcept_int() argument [all …]
|
| /freebsd/lib/msun/aarch64/ |
| H A D | fenv.h | 115 __feclearexcept_int(int __excepts) in __feclearexcept_int() argument 120 __r &= ~__excepts; in __feclearexcept_int() 126 __fegetexceptflag_int(fexcept_t *__flagp, int __excepts) in __fegetexceptflag_int() argument 131 *__flagp = __r & __excepts; in __fegetexceptflag_int() 136 __fesetexceptflag_int(const fexcept_t *__flagp, int __excepts) in __fesetexceptflag_int() argument 141 __r &= ~__excepts; in __fesetexceptflag_int() 142 __r |= *__flagp & __excepts; in __fesetexceptflag_int() 148 __feraiseexcept_int(int __excepts) in __feraiseexcept_int() argument 153 __r |= __excepts; in __feraiseexcept_int() 159 __fetestexcept_int(int __excepts) in __fetestexcept_int() argument [all …]
|