• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/lib/msun/arm/

Lines Matching refs:__excepts

79 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);
113 int __vfp_feclearexcept(int __excepts);
114 int __vfp_fegetexceptflag(fexcept_t *__flagp, int __excepts);
115 int __vfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts);
116 int __vfp_feraiseexcept(int __excepts);
117 int __vfp_fetestexcept(int __excepts);
162 int feclearexcept(int __excepts)
166 __vfp_feclearexcept(__excepts);
167 __softfp_feclearexcept(__excepts);
172 int fegetexceptflag(fexcept_t *__flagp, int __excepts)
178 __vfp_fegetexceptflag(&__vfp_flagp, __excepts);
179 __softfp_fegetexceptflag(__flagp, __excepts);
186 int fesetexceptflag(const fexcept_t *__flagp, int __excepts)
190 __vfp_fesetexceptflag(__flagp, __excepts);
191 __softfp_fesetexceptflag(__flagp, __excepts);
196 int feraiseexcept(int __excepts)
200 __vfp_feraiseexcept(__excepts);
201 __softfp_feraiseexcept(__excepts);
206 int fetestexcept(int __excepts)
212 __got_excepts = __vfp_fetestexcept(__excepts);
213 __got_excepts |= __softfp_fetestexcept(__excepts);