reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/RegisterValue.h
  214   bool SetUInt(uint64_t uint, uint32_t byte_size);

References

tools/lldb/source/Core/EmulateInstruction.cpp
  140     if (reg_value.SetUInt(uint_value, reg_info.byte_size))
  151     if (reg_value.SetUInt(uint_value, reg_info->byte_size))
tools/lldb/source/Host/common/NativeRegisterContext.cpp
  226   if (!value.SetUInt(uval, reg_info->byte_size))
tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
  235     success = reg_value.SetUInt(reg_uval, reg_info->byte_size);
tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
  146     value.SetUInt(static_cast<unsigned long>(data), size);
tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
   94     value.SetUInt(LLDB_INVALID_ADDRESS, reg_info->byte_size);
tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
   95     value.SetUInt(m_pc_value, reg_info->byte_size);
tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
 1026         value.SetUInt(regloc.location.inferred_value, reg_info->byte_size);
tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
   85     value.SetUInt(reg_value, reg_info->byte_size);
tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
   62       value.SetUInt(v, reg_info->byte_size);
   71       value.SetUInt(v, reg_info->byte_size);
tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
   96       cfa_reg_value.SetUInt(m_initial_sp, m_cfa_reg_info.byte_size);
  356   reg_value.SetUInt(reg_id, reg_info.byte_size);
tools/lldb/source/Target/RegisterContext.cpp
  227     if (value.SetUInt(uval, reg_info->byte_size))
tools/lldb/source/Utility/RegisterValue.cpp
  379     if (!SetUInt(uval64, reg_info->byte_size)) {
  408     if (!SetUInt(ival64, reg_info->byte_size)) {