HomeSort by relevance Sort by last modified time
    Searched refs:getULEB128 (Results 1 - 7 of 7) 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);
DWARFDebugLine.cpp 169 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
170 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
171 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
211 uint64_t len = debug_line_data.getULEB128(offset_ptr);
263 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr);
264 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr);
265 fileEntry.Length = debug_line_data.getULEB128(offset_ptr);
290 state.Address += debug_line_data.getULEB128(offset_ptr) *
303 state.File = debug_line_data.getULEB128(offset_ptr);
309 state.Column = debug_line_data.getULEB128(offset_ptr)
    [all...]
DWARFDebugInfoEntry.cpp 29 uint64_t abbrCode = debug_info_data.getULEB128(&offset);
102 uint64_t abbrCode = debug_info_data.getULEB128(offset_ptr);
130 form_size = debug_info_data.getULEB128(&offset);
183 debug_info_data.getULEB128(&offset);
188 form = debug_info_data.getULEB128(&offset);
220 uint64_t abbrCode = debug_info_data.getULEB128(&offset);
255 form_size = debug_info_data.getULEB128(&offset);
311 debug_info_data.getULEB128(&offset);
315 form = debug_info_data.getULEB128(&offset);
356 debug_info_data.getULEB128(&offset)
    [all...]
DWARFFormValue.cpp 97 Value.uval = data.getULEB128(offset_ptr);
137 Value.uval = data.getULEB128(offset_ptr);
147 Form = data.getULEB128(offset_ptr);
183 uint64_t size = debug_info_data.getULEB128(offset_ptr);
245 debug_info_data.getULEB128(offset_ptr);
250 form = debug_info_data.getULEB128(offset_ptr);
  /external/llvm/include/llvm/Support/
DataExtractor.h 331 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/unittests/Support/
DataExtractorTest.cpp 104 EXPECT_EQ(9382ULL, DE.getULEB128(&offset));

Completed in 1043 milliseconds