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

  /external/llvm/lib/Support/
DataExtractor.cpp 50 uint8_t DataExtractor::getU8(uint32_t *offset_ptr) const {
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const {
95 return getU8(offset_ptr);
110 return (int8_t)getU8(offset_ptr);
  /external/llvm/include/llvm/Support/
DataExtractor.h 148 uint8_t getU8(uint32_t *offset_ptr) const;
173 uint8_t *getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const;
  /external/llvm/lib/DebugInfo/
DWARFDebugArangeSet.cpp 46 HeaderData.AddrSize = data.getU8(offset_ptr);
47 HeaderData.SegSize = data.getU8(offset_ptr);
DWARFDebugLine.cpp 80 MinInstLength = debug_line_data.getU8(offset_ptr);
82 MaxOpsPerInst = debug_line_data.getU8(offset_ptr);
83 DefaultIsStmt = debug_line_data.getU8(offset_ptr);
84 LineBase = debug_line_data.getU8(offset_ptr);
85 LineRange = debug_line_data.getU8(offset_ptr);
86 OpcodeBase = debug_line_data.getU8(offset_ptr);
90 uint8_t op_len = debug_line_data.getU8(offset_ptr);
266 uint8_t opcode = debug_line_data.getU8(offset_ptr);
275 uint8_t sub_opcode = debug_line_data.getU8(offset_ptr);
DWARFAbbreviationDeclaration.cpp 36 uint8_t ChildrenByte = Data.getU8(OffsetPtr);
DWARFDebugFrame.cpp 100 uint8_t Opcode = Data.getU8(Offset);
135 addInstruction(Opcode, Data.getU8(Offset));
292 uint8_t c = Data.getU8(&Offset);
334 uint8_t Version = Data.getU8(&Offset);
DWARFFormValue.cpp 160 Value.uval = data.getU8(offset_ptr);
174 Value.uval = data.getU8(offset_ptr);
275 uint8_t size = debug_info_data.getU8(offset_ptr);
DWARFDebugLoc.cpp 87 data.getU8(&Offset))) != dwarf::DW_LLE_end_of_list_entry) {
DWARFUnit.cpp 58 AddrSize = debug_info.getU8(offset_ptr);
DWARFContext.cpp 52 PubIndexEntryDescriptor desc(pubNames.getU8(&offset));
  /external/llvm/unittests/Support/
DataExtractorTest.cpp 30 EXPECT_EQ(0x80U, DE.getU8(&offset));

Completed in 571 milliseconds