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

  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.cpp 31 Code = Data.getULEB128(OffsetPtr);
35 Tag = Data.getULEB128(OffsetPtr);
41 uint16_t Attr = Data.getULEB128(OffsetPtr);
47 uint16_t Form = Data.getULEB128(OffsetPtr);
DWARFDebugFrame.cpp 115 addInstruction(Primary, Op1, Data.getULEB128(Offset));
151 addInstruction(Opcode, Data.getULEB128(Offset));
162 addInstruction(Opcode, Data.getULEB128(Offset),
163 Data.getULEB128(Offset));
169 addInstruction(Opcode, Data.getULEB128(Offset),
336 uint64_t CodeAlignmentFactor = Data.getULEB128(&Offset);
338 uint64_t ReturnAddressRegister = Data.getULEB128(&Offset);
DWARFDebugLine.cpp 107 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
108 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
109 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
272 uint64_t len = debug_line_data.getULEB128(offset_ptr);
333 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
334 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
335 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
341 State.Row.Discriminator = debug_line_data.getULEB128(offset_ptr);
365 debug_line_data.getULEB128(offset_ptr) * Prologue.MinInstLength;
377 State.Row.File = debug_line_data.getULEB128(offset_ptr)
    [all...]
DWARFFormValue.cpp 156 Value.uval = data.getULEB128(offset_ptr);
207 Value.uval = data.getULEB128(offset_ptr);
213 Form = data.getULEB128(offset_ptr);
235 Value.uval = data.getULEB128(offset_ptr);
270 uint64_t size = debug_info_data.getULEB128(offset_ptr);
341 debug_info_data.getULEB128(offset_ptr);
346 form = debug_info_data.getULEB128(offset_ptr);
DWARFDebugInfoEntry.cpp 30 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
100 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr);
156 DebugInfoData.getULEB128(&DebugInfoOffset);
DWARFDebugLoc.cpp 97 E.Start = data.getULEB128(&Offset);
  /external/libcxxabi/src/Unwind/
DwarfParser.hpp 151 pint_t augLen = (pint_t)addressSpace.getULEB128(p, nextCFI);
218 pint_t augLen = (pint_t)addressSpace.getULEB128(p, nextCFI);
295 cieInfo->codeAlignFactor = (uint32_t)addressSpace.getULEB128(p, cieContentEnd);
299 uint64_t raReg = addressSpace.getULEB128(p, cieContentEnd);
306 addressSpace.getULEB128(p, cieContentEnd);
419 reg = addressSpace.getULEB128(p, instructionsEnd);
420 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd)
434 reg = addressSpace.getULEB128(p, instructionsEnd);
447 reg = addressSpace.getULEB128(p, instructionsEnd);
458 reg = addressSpace.getULEB128(p, instructionsEnd)
    [all...]
AddressSpace.hpp 119 static uint64_t getULEB128(pint_t &addr, pint_t end);
140 inline uint64_t LocalAddressSpace::getULEB128(pint_t &addr, pint_t end) {
200 result = (pint_t)getULEB128(addr, end);
388 uint64_t getULEB128(pint_t &addr, pint_t end);
423 uint64_t OtherAddressSpace<P>::getULEB128(pint_t &addr, pint_t end) {
427 uint64_t result = LocalAddressSpace::getULEB128(laddr, laddr + size);
DwarfInstructions.hpp 223 pint_t length = (pint_t)addressSpace.getULEB128(p, expressionEnd);
333 value = (pint_t)addressSpace.getULEB128(p, expressionEnd);
482 *sp += addressSpace.getULEB128(p, expressionEnd);
652 reg = (uint32_t)addressSpace.getULEB128(p, expressionEnd);
699 reg = (uint32_t)addressSpace.getULEB128(p, expressionEnd);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DwarfParser.hpp 151 pint_t augLen = (pint_t)addressSpace.getULEB128(p, nextCFI);
218 pint_t augLen = (pint_t)addressSpace.getULEB128(p, nextCFI);
295 cieInfo->codeAlignFactor = (uint32_t)addressSpace.getULEB128(p, cieContentEnd);
299 uint64_t raReg = addressSpace.getULEB128(p, cieContentEnd);
306 addressSpace.getULEB128(p, cieContentEnd);
419 reg = addressSpace.getULEB128(p, instructionsEnd);
420 offset = (int64_t)addressSpace.getULEB128(p, instructionsEnd)
434 reg = addressSpace.getULEB128(p, instructionsEnd);
447 reg = addressSpace.getULEB128(p, instructionsEnd);
458 reg = addressSpace.getULEB128(p, instructionsEnd)
    [all...]
AddressSpace.hpp 145 static uint64_t getULEB128(pint_t &addr, pint_t end);
166 inline uint64_t LocalAddressSpace::getULEB128(pint_t &addr, pint_t end) {
226 result = (pint_t)getULEB128(addr, end);
420 uint64_t getULEB128(pint_t &addr, pint_t end);
455 uint64_t OtherAddressSpace<P>::getULEB128(pint_t &addr, pint_t end) {
459 uint64_t result = LocalAddressSpace::getULEB128(laddr, laddr + size);
DwarfInstructions.hpp 223 pint_t length = (pint_t)addressSpace.getULEB128(p, expressionEnd);
333 value = (pint_t)addressSpace.getULEB128(p, expressionEnd);
482 *sp += addressSpace.getULEB128(p, expressionEnd);
652 reg = (uint32_t)addressSpace.getULEB128(p, expressionEnd);
699 reg = (uint32_t)addressSpace.getULEB128(p, expressionEnd);
  /external/llvm/unittests/Support/
DataExtractorTest.cpp 105 EXPECT_EQ(9382ULL, DE.getULEB128(&offset));
113 EXPECT_EQ(42218325750568106ULL, BDE.getULEB128(&offset));
  /external/llvm/include/llvm/Support/
DataExtractor.h 334 uint64_t getULEB128(uint32_t *offset_ptr) const;
  /external/llvm/lib/Support/
DataExtractor.cpp 131 uint64_t DataExtractor::getULEB128(uint32_t *offset_ptr) const {
  /external/llvm/lib/Object/
MachOObjectFile.cpp     [all...]

Completed in 397 milliseconds