Home
last modified time | relevance | path

Searched refs:SetUInt (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_s390x.cpp62 value.SetUInt(v, reg_info->byte_size); in ReadRegister()
71 value.SetUInt(v, reg_info->byte_size); in ReadRegister()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDummy.cpp93 value.SetUInt(LLDB_INVALID_ADDRESS, reg_info->byte_size); in ReadRegister()
H A DRegisterContextHistory.cpp94 value.SetUInt(m_pc_value, reg_info->byte_size); in ReadRegister()
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DRegisterValue.cpp374 if (!SetUInt(uval64, reg_info->byte_size)) { in SetValueFromString()
403 if (!SetUInt(ival64, reg_info->byte_size)) { in SetValueFromString()
727 bool RegisterValue::SetUInt(uint64_t uint, uint32_t byte_size) { in SetUInt() function in RegisterValue
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux.cpp146 value.SetUInt(static_cast<unsigned long>(data), size); in DoReadRegisterValue()
H A DNativeRegisterContextLinux_riscv64.cpp110 reg_value.SetUInt(0, reg_info->byte_size); in ReadRegister()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DEmulateInstruction.cpp151 if (reg_value.SetUInt(uint_value, reg_info->byte_size)) in WriteRegisterUnsigned()
161 if (reg_value.SetUInt(uint_value, reg_info.byte_size)) in WriteRegisterUnsigned()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DRegisterValue.h215 bool SetUInt(uint64_t uint, uint32_t byte_size);
/openbsd-src/gnu/llvm/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp98 cfa_reg_value.SetUInt(m_initial_sp, m_cfa_reg_info.byte_size); in GetNonCallSiteUnwindPlanFromAssembly()
374 reg_value.SetUInt(reg_id, reg_info.byte_size); in GetRegisterValue()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp198 success = reg_value.SetUInt(reg_uval, reg_info->byte_size); in ReadPseudoRegister()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DNativeRegisterContext.cpp237 if (!value.SetUInt(uval, reg_info->byte_size)) in WriteRegisterFromUnsigned()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DRegisterContext.cpp215 if (value.SetUInt(uval, reg_info->byte_size)) in WriteRegisterFromUnsigned()
H A DRegisterContextUnwind.cpp1130 value.SetUInt(regloc.location.inferred_value, reg_info->byte_size); in ReadRegisterValueFromRegisterLocation()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/x64/
H A DRegisterContextWindows_x64.cpp351 reg_value.SetUInt##size(reg_val); \ in ReadRegister()