Home
last modified time | relevance | path

Searched defs:WinExceptionFlags (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/x86_64/
H A DFEnvImpl.h387 struct WinExceptionFlags { struct
388 static constexpr uint32_t INEXACT_WIN = 0x01;
389 static constexpr uint32_t UNDERFLOW_WIN = 0x02;
390 static constexpr uint32_t OVERFLOW_WIN = 0x04;
391 static constexpr uint32_t DIV_BY_ZERO_WIN = 0x08;
392 static constexpr uint32_t INVALID_WIN = 0x10;
393 static constexpr uint32_t DENORMAL_WIN = 0x20;
398 static constexpr uint32_t HIGH_OFFSET = 24;
400 static constexpr uint32_t HIGH_INEXACT = INEXACT_WIN << HIGH_OFFSET;
401 static constexpr uint32_t HIGH_UNDERFLOW = UNDERFLOW_WIN << HIGH_OFFSET;
[all …]