Home
last modified time | relevance | path

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

/external/libunwind_llvm/src/
DAddressSpace.hpp146 static int64_t getSLEB128(pint_t &addr, pint_t end);
192 inline int64_t LocalAddressSpace::getSLEB128(pint_t &addr, pint_t end) { in getSLEB128() function in libunwind::LocalAddressSpace
245 result = (pint_t)getSLEB128(addr, end); in getEncodedP()
494 int64_t getSLEB128(pint_t &addr, pint_t end);
539 int64_t OtherAddressSpace<P>::getSLEB128(pint_t &addr, pint_t end) { in getSLEB128() function in libunwind::OtherAddressSpace
543 uint64_t result = LocalAddressSpace::getSLEB128(laddr, laddr + size); in getSLEB128()
DDwarfParser.hpp298 cieInfo->dataAlignFactor = (int)addressSpace.getSLEB128(p, cieContentEnd); in parseCIE()
590 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor; in parseInstructions()
601 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor; in parseInstructions()
616 (addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor); in parseInstructions()
641 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor; in parseInstructions()
DDwarfInstructions.hpp342 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd); in evaluateExpression()
692 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd); in evaluateExpression()
701 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd); in evaluateExpression()
/external/llvm/unittests/Support/
DDataExtractorTest.cpp108 EXPECT_EQ(-7002LL, DE.getSLEB128(&offset)); in TEST()
116 EXPECT_EQ(-29839268287359830LL, BDE.getSLEB128(&offset)); in TEST()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DDataExtractor.h313 int64_t getSLEB128(uint32_t *offset_ptr) const;
/external/llvm/include/llvm/Support/
DDataExtractor.h315 int64_t getSLEB128(uint32_t *offset_ptr) const;
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp161 addInstruction(Opcode, Data.getSLEB128(Offset)); in parseInstructions()
182 auto op2 = (uint64_t)Data.getSLEB128(Offset); in parseInstructions()
560 int64_t DataAlignmentFactor = Data.getSLEB128(&Offset); in parse()
DDWARFFormValue.cpp201 Value.sval = data.getSLEB128(offset_ptr); in extractValue()
DDWARFDebugLine.cpp370 State.Row.Line += debug_line_data.getSLEB128(offset_ptr); in parse()
/external/swiftshader/third_party/LLVM/unittests/Support/
DDataExtractorTest.cpp107 EXPECT_EQ(-7002LL, DE.getSLEB128(&offset)); in TEST()
/external/swiftshader/third_party/LLVM/lib/Support/
DDataExtractor.cpp152 int64_t DataExtractor::getSLEB128(uint32_t *offset_ptr) const { in getSLEB128() function in DataExtractor
/external/llvm/lib/Support/
DDataExtractor.cpp152 int64_t DataExtractor::getSLEB128(uint32_t *offset_ptr) const { in getSLEB128() function in DataExtractor
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFFormValue.cpp130 Value.sval = data.getSLEB128(offset_ptr); in extractValue()
DDWARFDebugLine.cpp297 state.Line += debug_line_data.getSLEB128(offset_ptr); in parseStatementTable()