Lines Matching refs:__control
38 uint32_t __control; member
140 uint16_t __control; in fegetround() local
148 __fnstcw(&__control); in fegetround()
149 return (__control & _ROUND_MASK); in fegetround()
156 uint16_t __control; in fesetround() local
161 __fnstcw(&__control); in fesetround()
162 __control &= ~_ROUND_MASK; in fesetround()
163 __control |= __round; in fesetround()
164 __fldcw(__control); in fesetround()
204 uint16_t __control; in fegetexcept() local
210 __fnstcw(&__control); in fegetexcept()
211 return (~__control & FE_ALL_EXCEPT); in fegetexcept()