Home
last modified time | relevance | path

Searched refs:INEXACT_F (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/aarch64/
H A DFEnvImpl.h48 static constexpr uint32_t INEXACT_F = 0x10; member
60 ((excepts & FE_INEXACT) ? INEXACT_F : 0); in getStatusValueForExcept()
68 ((status & INEXACT_F) ? FE_INEXACT : 0); in exceptionStatusToMacro()
202 if (toRaise & FEnv::INEXACT_F) { in raise_except()
210 FEnv::INEXACT_F)) in raise_except()
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/x86_64/
H A DFEnvImpl.h61 static constexpr uint16_t INEXACT_F = 0x20; member
83 ((excepts & FE_INEXACT) ? ExceptionFlags::INEXACT_F : 0); in get_status_value_for_except()
94 ((status & ExceptionFlags::INEXACT_F) ? FE_INEXACT : 0); in exception_status_to_macro()
281 if (status_value & internal::ExceptionFlags::INEXACT_F) in raise_except()
282 raise_helper(internal::ExceptionFlags::INEXACT_F); in raise_except()
493 status_word |= (mxcsr & internal::ExceptionFlags::INEXACT_F) >> 5; in get_env()
504 control_word |= (mxcsr & (internal::ExceptionFlags::INEXACT_F << 7)) >> 12; in get_env()