HomeSort by relevance Sort by last modified time
    Searched refs:getSLEB128 (Results 1 - 12 of 12) sorted by null

  /external/libcxxabi/src/Unwind/
AddressSpace.hpp 120 static int64_t getSLEB128(pint_t &addr, pint_t end);
165 inline int64_t LocalAddressSpace::getSLEB128(pint_t &addr, pint_t end) {
218 result = (pint_t)getSLEB128(addr, end);
389 int64_t getSLEB128(pint_t &addr, pint_t end);
433 int64_t OtherAddressSpace<P>::getSLEB128(pint_t &addr, pint_t end) {
437 uint64_t result = LocalAddressSpace::getSLEB128(laddr, laddr + size);
DwarfParser.hpp 297 cieInfo->dataAlignFactor = (int)addressSpace.getSLEB128(p, cieContentEnd);
586 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
596 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
610 (addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor);
634 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
DwarfInstructions.hpp 341 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd);
691 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd);
700 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
AddressSpace.hpp 146 static int64_t getSLEB128(pint_t &addr, pint_t end);
191 inline int64_t LocalAddressSpace::getSLEB128(pint_t &addr, pint_t end) {
244 result = (pint_t)getSLEB128(addr, end);
421 int64_t getSLEB128(pint_t &addr, pint_t end);
465 int64_t OtherAddressSpace<P>::getSLEB128(pint_t &addr, pint_t end) {
469 uint64_t result = LocalAddressSpace::getSLEB128(laddr, laddr + size);
DwarfParser.hpp 297 cieInfo->dataAlignFactor = (int)addressSpace.getSLEB128(p, cieContentEnd);
586 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
596 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
610 (addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor);
634 addressSpace.getSLEB128(p, instructionsEnd) * cieInfo.dataAlignFactor;
DwarfInstructions.hpp 341 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd);
691 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd);
700 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd);
  /external/llvm/unittests/Support/
DataExtractorTest.cpp 108 EXPECT_EQ(-7002LL, DE.getSLEB128(&offset));
116 EXPECT_EQ(-29839268287359830LL, BDE.getSLEB128(&offset));
  /external/llvm/include/llvm/Support/
DataExtractor.h 316 int64_t getSLEB128(uint32_t *offset_ptr) const;
  /external/llvm/lib/DebugInfo/
DWARFDebugFrame.cpp 155 addInstruction(Opcode, Data.getSLEB128(Offset));
170 Data.getSLEB128(Offset));
337 int64_t DataAlignmentFactor = Data.getSLEB128(&Offset);
DWARFFormValue.cpp 193 Value.sval = data.getSLEB128(offset_ptr);
DWARFDebugLine.cpp 371 State.Row.Line += debug_line_data.getSLEB128(offset_ptr);
  /external/llvm/lib/Support/
DataExtractor.cpp 152 int64_t DataExtractor::getSLEB128(uint32_t *offset_ptr) const {

Completed in 138 milliseconds