Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h56 RegisterValue() : m_scalar(static_cast<unsigned long>(0)) {} in RegisterValue() function
58 explicit RegisterValue(uint8_t inst) : m_type(eTypeUInt8) { m_scalar = inst; } in RegisterValue() function
60 explicit RegisterValue(uint16_t inst) : m_type(eTypeUInt16) { in RegisterValue() function
64 explicit RegisterValue(uint32_t inst) : m_type(eTypeUInt32) { in RegisterValue() function
68 explicit RegisterValue(uint64_t inst) : m_type(eTypeUInt64) { in RegisterValue() function
72 explicit RegisterValue(llvm::APInt inst) : m_type(eTypeUInt128) { in RegisterValue() function
76 explicit RegisterValue(float value) : m_type(eTypeFloat) { m_scalar = value; } in RegisterValue() function
78 explicit RegisterValue(double value) : m_type(eTypeDouble) { in RegisterValue() function
82 explicit RegisterValue(long double value) : m_type(eTypeLongDouble) { in RegisterValue() function
86 explicit RegisterValue(llvm::ArrayRef<uint8_t> bytes, in RegisterValue() function
/freebsd-src/sys/contrib/dev/acpica/components/hardware/
H A Dhwxface.c326 UINT32 RegisterValue; in ACPI_EXPORT_SYMBOL() local
396 UINT32 RegisterValue; in ACPI_EXPORT_SYMBOL() local
[all...]
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Core/
H A DDumpRegisterValue.h19 class RegisterValue; variable
H A DEmulateInstruction.h31 class RegisterValue; variable
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DRegisterContextMinidump_ARM.cpp539 const RegisterValue &) { in WriteRegister()
H A DRegisterContextMinidump_ARM64.cpp822 const RegisterValue &) { in WriteRegister()
/freebsd-src/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h180 class RegisterValue; global() variable