Lines Matching defs:WinExceptionFlags
384 struct WinExceptionFlags {
491 status_word |= status_word << WinExceptionFlags::HIGH_OFFSET;
502 control_word |= control_word << WinExceptionFlags::HIGH_OFFSET;
528 (WinExceptionFlags::HIGH_DENORMAL | WinExceptionFlags::HIGH_INVALID)) >>
531 (state->status_word & WinExceptionFlags::HIGH_DIV_BY_ZERO) >> 25);
533 (state->status_word & WinExceptionFlags::HIGH_OVERFLOW) >> 23);
535 (state->status_word & WinExceptionFlags::HIGH_UNDERFLOW) >> 21);
537 (state->status_word & WinExceptionFlags::HIGH_INEXACT) >> 19);
547 (WinExceptionFlags::HIGH_DENORMAL | WinExceptionFlags::HIGH_INVALID)) >>
550 (state->control_word & WinExceptionFlags::HIGH_DIV_BY_ZERO) >> 18);
552 (state->control_word & WinExceptionFlags::HIGH_OVERFLOW) >> 16);
554 (state->control_word & WinExceptionFlags::HIGH_UNDERFLOW) >> 14);
556 (state->control_word & WinExceptionFlags::HIGH_INEXACT) >> 12);