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

Declarations

tools/lldb/include/lldb/Utility/Stream.h
  458   size_t PutSLEB128(int64_t uval);

References

tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
  394     s.PutSLEB128(uvalue);
tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
  155           stream.PutSLEB128(*relative_offset);
  189         stream.PutSLEB128(offset);
tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
  116           stream.PutSLEB128(offset);
  142     stream.PutSLEB128(offset);
tools/lldb/source/Symbol/PostfixExpression.cpp
  154     m_out_stream.PutSLEB128(integer.GetValue());
  225   m_out_stream.PutSLEB128(0);
tools/lldb/unittests/Utility/StreamTest.cpp
  493   auto bytes = s.PutSLEB128(0x74LL);
  500   auto bytes = s.PutSLEB128(0x1985LL);
  507   auto bytes = s.PutSLEB128(0x5023LL);
  514   auto bytes = s.PutSLEB128(0xA48032LL);
  521   auto bytes = s.PutSLEB128(0x12345678LL);
  528   auto bytes = s.PutSLEB128(0xABFE3FAFDFLL);
  535   auto bytes = s.PutSLEB128(0xDABFE3FAFDFLL);
  542   auto bytes = s.PutSLEB128(0x7CDABFE3FAFDFLL);
  549   auto bytes = s.PutSLEB128(0x327CDABFE3FAFDFLL);
  556   auto bytes = s.PutSLEB128(std::numeric_limits<int64_t>::max());
  563   auto bytes = s.PutSLEB128(0x0);
  570   auto bytes = s.PutSLEB128(0x1);
  589   auto bytes = s.PutSLEB128(0x1985LL);