Lines Matching defs:status
57 0xffff0000, /* Status word register */
101 * representation of the states of the floating-point status flags indicated by
107 unsigned short status;
112 /* Store the current x87 status register */
113 __asm__ __volatile__ ("fnstsw %0" : "=am" (status));
119 *flagp = (status | mxcsr) & excepts;
129 * exception as a side effect, but we choose to manipulate the status register
146 * This function sets the floating-point status flags indicated by the argument
161 /* Set the requested status flags */
180 * specifies the floating-point status flags to be queried.
185 unsigned short status;
190 /* Store the current x87 status register */
191 __asm__ __volatile__ ("fnstsw %0" : "=am" (status));
196 return ((status | mxcsr) & excepts);
267 * essentially lost (either the x87 FPU status register is cleared or
280 * in the object pointed to by envp, clears the floating-point status flags, and
317 * status flags represented through its argument.
342 unsigned short status;
345 /* Store the x87 status register */
346 __asm__ __volatile__ ("fnstsw %0" : "=am" (status));
355 feraiseexcept(status | mxcsr);