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

References

tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
   46       m_value.value.uval =
   50       m_value.value.uval = data.GetU8(offset_ptr);
   54       m_value.value.uval = data.GetU16(offset_ptr);
   58       m_value.value.uval = data.GetU32(offset_ptr);
   62       m_value.value.uval = 16;
   67       m_value.value.uval = data.GetULEB128(offset_ptr);
   79       m_value.value.uval = data.GetMaxU64(offset_ptr, 4);
   86       m_value.value.uval = data.GetU8(offset_ptr);
   92       m_value.value.uval = data.GetU16(offset_ptr);
   96       m_value.value.uval = data.GetMaxU64(offset_ptr, 3);
  102       m_value.value.uval = data.GetU32(offset_ptr);
  107       m_value.value.uval = data.GetU64(offset_ptr);
  116       m_value.value.uval = data.GetULEB128(offset_ptr);
  124       m_value.value.uval = data.GetMaxU64(offset_ptr, ref_addr_size);
  131       m_value.value.uval = 1;
  139     m_value.data = data.PeekData(*offset_ptr, m_value.value.uval);
  141       *offset_ptr += m_value.value.uval;
  460         m_value.value.uval);
  463     lldb::offset_t offset = m_value.value.uval * index_size;
  478         m_unit->GetStrOffsetsBase() + m_value.value.uval * indexSize;
  487         m_value.value.uval);
  505   lldb::offset_t offset = addr_base + m_value.value.uval * index_size;
  511   uint64_t value = m_value.value.uval;
  556   uint64_t value = m_value.value.uval;
  678     uint64_t a = a_value.m_value.value.uval;
  679     uint64_t b = b_value.m_value.value.uval;
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
   23     ValueTypeTag() : value(), data(nullptr) { value.uval = 0; }
   62   bool Boolean() const { return m_value.value.uval != 0; }
   63   uint64_t Unsigned() const { return m_value.value.uval; }
   64   void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; }