Home
last modified time | relevance | path

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

/aosp_15_r20/external/llvm-libc/src/__support/FPUtil/x86_64/
H A DFEnvImpl.h384 struct WinExceptionFlags { struct
385 static constexpr uint32_t INEXACT_WIN = 0x01;
386 static constexpr uint32_t UNDERFLOW_WIN = 0x02;
387 static constexpr uint32_t OVERFLOW_WIN = 0x04;
388 static constexpr uint32_t DIV_BY_ZERO_WIN = 0x08;
389 static constexpr uint32_t INVALID_WIN = 0x10;
390 static constexpr uint32_t DENORMAL_WIN = 0x20;
395 static constexpr uint32_t HIGH_OFFSET = 24;
397 static constexpr uint32_t HIGH_INEXACT = INEXACT_WIN << HIGH_OFFSET;
398 static constexpr uint32_t HIGH_UNDERFLOW = UNDERFLOW_WIN << HIGH_OFFSET;
[all …]