Home
last modified time | relevance | path

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

/bionic/libc/include/bits/
Dfenv_inlines_arm.h58 __BIONIC_FENV_INLINE int feclearexcept(int __excepts) { in feclearexcept() argument
61 __fpscr &= ~__excepts; in feclearexcept()
66 __BIONIC_FENV_INLINE int fegetexceptflag(fexcept_t* __flagp, int __excepts) { in fegetexceptflag() argument
69 *__flagp = __fpscr & __excepts; in fegetexceptflag()
73 __BIONIC_FENV_INLINE int fesetexceptflag(const fexcept_t* __flagp, int __excepts) { in fesetexceptflag() argument
76 __fpscr &= ~__excepts; in fesetexceptflag()
77 __fpscr |= *__flagp & __excepts; in fesetexceptflag()
82 __BIONIC_FENV_INLINE int feraiseexcept(int __excepts) { in feraiseexcept() argument
83 fexcept_t __ex = __excepts; in feraiseexcept()
84 fesetexceptflag(&__ex, __excepts); in feraiseexcept()
[all …]