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

  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.cpp 19 return extract(data, offset_ptr, data.getULEB128(offset_ptr));
28 Tag = data.getULEB128(offset_ptr);
32 uint16_t attr = data.getULEB128(offset_ptr);
33 uint16_t form = data.getULEB128(offset_ptr);
DWARFDebugFrame.cpp 118 addInstruction(Primary, Op1, Data.getULEB128(Offset));
153 addInstruction(Opcode, Data.getULEB128(Offset));
164 addInstruction(Opcode, Data.getULEB128(Offset),
165 Data.getULEB128(Offset));
171 addInstruction(Opcode, Data.getULEB128(Offset),
347 uint64_t CodeAlignmentFactor = Data.getULEB128(&Offset);
349 uint64_t ReturnAddressRegister = Data.getULEB128(&Offset);
DWARFDebugLine.cpp 203 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
204 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
205 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
247 uint64_t len = debug_line_data.getULEB128(offset_ptr);
307 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
308 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
309 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
334 state.Address += debug_line_data.getULEB128(offset_ptr) *
347 state.File = debug_line_data.getULEB128(offset_ptr);
353 state.Column = debug_line_data.getULEB128(offset_ptr)
    [all...]
DWARFFormValue.cpp 104 Value.uval = data.getULEB128(offset_ptr);
155 Value.uval = data.getULEB128(offset_ptr);
165 Form = data.getULEB128(offset_ptr);
186 Value.uval = data.getULEB128(offset_ptr);
189 Value.uval = data.getULEB128(offset_ptr);
224 uint64_t size = debug_info_data.getULEB128(offset_ptr);
295 debug_info_data.getULEB128(offset_ptr);
300 form = debug_info_data.getULEB128(offset_ptr);
DWARFDebugInfoEntry.cpp 30 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
102 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr);
141 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr);
205 debug_info_data.getULEB128(&offset);
  /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 1225 milliseconds