Lines Matching refs:__excepts

77 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);
111 int __vfp_feclearexcept(int __excepts);
112 int __vfp_fegetexceptflag(fexcept_t *__flagp, int __excepts);
113 int __vfp_fesetexceptflag(const fexcept_t *__flagp, int __excepts);
114 int __vfp_feraiseexcept(int __excepts);
115 int __vfp_fetestexcept(int __excepts);
160 int feclearexcept(int __excepts)
164 __vfp_feclearexcept(__excepts);
165 __softfp_feclearexcept(__excepts);
170 int fegetexceptflag(fexcept_t *__flagp, int __excepts)
176 __vfp_fegetexceptflag(&__vfp_flagp, __excepts);
177 __softfp_fegetexceptflag(__flagp, __excepts);
184 int fesetexceptflag(const fexcept_t *__flagp, int __excepts)
188 __vfp_fesetexceptflag(__flagp, __excepts);
189 __softfp_fesetexceptflag(__flagp, __excepts);
194 int feraiseexcept(int __excepts)
198 __vfp_feraiseexcept(__excepts);
199 __softfp_feraiseexcept(__excepts);
204 int fetestexcept(int __excepts)
210 __got_excepts = __vfp_fetestexcept(__excepts);
211 __got_excepts |= __softfp_fetestexcept(__excepts);