Searched refs:ExceptionFlags (Results 1 – 13 of 13) sorted by relevance
/external/llvm-project/libc/utils/FPUtil/x86_64/ |
D | FEnv.h | 42 struct ExceptionFlags { struct 62 return (excepts & FE_INVALID ? ExceptionFlags::Invalid : 0) | in getStatusValueForExcept() argument 63 (excepts & FE_DIVBYZERO ? ExceptionFlags::DivByZero : 0) | in getStatusValueForExcept() 64 (excepts & FE_OVERFLOW ? ExceptionFlags::Overflow : 0) | in getStatusValueForExcept() 65 (excepts & FE_UNDERFLOW ? ExceptionFlags::Underflow : 0) | in getStatusValueForExcept() 66 (excepts & FE_INEXACT ? ExceptionFlags::Inexact : 0); in getStatusValueForExcept() 70 return (status & ExceptionFlags::Invalid ? FE_INVALID : 0) | in exceptionStatusToMacro() 71 (status & ExceptionFlags::DivByZero ? FE_DIVBYZERO : 0) | in exceptionStatusToMacro() 72 (status & ExceptionFlags::Overflow ? FE_OVERFLOW : 0) | in exceptionStatusToMacro() 73 (status & ExceptionFlags::Underflow ? FE_UNDERFLOW : 0) | in exceptionStatusToMacro() [all …]
|
/external/llvm-project/libunwind/src/ |
D | Unwind-seh.cpp | 70 ms_exc->ExceptionCode, ms_exc->ExceptionFlags, in _GCC_specific_handler() 73 if (IS_TARGET_UNWIND(ms_exc->ExceptionFlags)) { in _GCC_specific_handler() 93 if (!IS_UNWINDING(ms_exc->ExceptionFlags) && ms_exc->NumberParameters > 1) { in _GCC_specific_handler() 110 if (!IS_UNWINDING(ms_exc->ExceptionFlags)) { in _GCC_specific_handler() 142 if (IS_UNWINDING(ms_exc->ExceptionFlags)) in _GCC_specific_handler() 157 if (ours && !IS_UNWINDING(ms_exc->ExceptionFlags) && ms_exc->NumberParameters > 1) in _GCC_specific_handler() 160 if (!IS_UNWINDING(ms_exc->ExceptionFlags)) in _GCC_specific_handler() 208 ms_exc.ExceptionFlags = 0; in __libunwind_seh_personality() 382 ms_exc.ExceptionFlags = EXCEPTION_NONCONTINUABLE; in _Unwind_Resume()
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ExceptionRecord.h | 29 m_continuable = (record.ExceptionFlags == 0); in ExceptionRecord() 41 : m_code(record.ExceptionCode), m_continuable(record.ExceptionFlags == 0), in ExceptionRecord()
|
/external/llvm-project/llvm/unittests/ObjectYAML/ |
D | MinidumpYAMLTest.cpp | 174 EXPECT_EQ(0x5u, Exception.ExceptionFlags); in TEST() 217 EXPECT_EQ(0x5u, Exception.ExceptionFlags); in TEST() 273 EXPECT_EQ(0x0u, Exception.ExceptionFlags); in TEST() 324 EXPECT_EQ(0x5u, Exception.ExceptionFlags); in TEST()
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | Minidump.h | 234 support::ulittle32_t ExceptionFlags; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Minidump.h | 234 support::ulittle32_t ExceptionFlags; member
|
/external/grpc-grpc/test/core/util/ |
D | test_config.cc | 162 DWORD flgs = exrec->ExceptionFlags; in crash_handler()
|
/external/llvm-project/llvm/unittests/Object/ |
D | MinidumpTest.cpp | 760 EXPECT_EQ(0x09080807u, Exception.ExceptionFlags); in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | MinidumpYAML.cpp | 383 mapOptionalHex(IO, "Exception Flags", Exception.ExceptionFlags, 0); in mapping()
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | MinidumpYAML.cpp | 383 mapOptionalHex(IO, "Exception Flags", Exception.ExceptionFlags, 0); in mapping()
|
/external/python/cpython3/Modules/ |
D | faulthandler.c | 388 DWORD flags = exc_info->ExceptionRecord->ExceptionFlags; in faulthandler_exc_handler()
|
/external/llvm-project/lldb/source/Plugins/Process/minidump/ |
D | ProcessMinidump.cpp | 354 m_active_exception->ExceptionRecord.ExceptionFlags, in RefreshStateAfterStop()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | dbghelp.h | 1029 ULONG32 ExceptionFlags; member
|