Home
last modified time | relevance | path

Searched refs:PutSLEB128 (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/unittests/Utility/
DStreamTest.cpp596 auto bytes = s.PutSLEB128(0x74LL); in TEST_F()
603 auto bytes = s.PutSLEB128(0x1985LL); in TEST_F()
610 auto bytes = s.PutSLEB128(0x5023LL); in TEST_F()
617 auto bytes = s.PutSLEB128(0xA48032LL); in TEST_F()
624 auto bytes = s.PutSLEB128(0x12345678LL); in TEST_F()
631 auto bytes = s.PutSLEB128(0xABFE3FAFDFLL); in TEST_F()
638 auto bytes = s.PutSLEB128(0xDABFE3FAFDFLL); in TEST_F()
645 auto bytes = s.PutSLEB128(0x7CDABFE3FAFDFLL); in TEST_F()
652 auto bytes = s.PutSLEB128(0x327CDABFE3FAFDFLL); in TEST_F()
659 auto bytes = s.PutSLEB128(std::numeric_limits<int64_t>::max()); in TEST_F()
[all …]
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DPDBLocationToDWARFExpression.cpp116 stream.PutSLEB128(offset); in ConvertPDBLocationToDWARFExpression()
142 stream.PutSLEB128(offset); in ConvertPDBLocationToDWARFExpression()
/external/llvm-project/lldb/source/Symbol/
DPostfixExpression.cpp154 m_out_stream.PutSLEB128(integer.GetValue()); in Visit()
225 m_out_stream.PutSLEB128(0); in Visit()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DDWARFLocationExpression.cpp155 stream.PutSLEB128(*relative_offset); in MakeRegisterBasedLocationExpressionInternal()
189 stream.PutSLEB128(offset); in MakeVFrameRelLocationExpression()
/external/llvm-project/lldb/include/lldb/Utility/
DStream.h345 size_t PutSLEB128(int64_t uval);
/external/llvm-project/lldb/source/Utility/
DStream.cpp47 size_t Stream::PutSLEB128(int64_t sval) { in PutSLEB128() function in Stream
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFFormValue.cpp396 s.PutSLEB128(uvalue); in Dump()