Searched refs:getU8 (Results 1 – 12 of 12) sorted by relevance
/external/llvm/lib/Support/ |
D | DataExtractor.cpp | 50 uint8_t DataExtractor::getU8(uint32_t *offset_ptr) const { in getU8() function in DataExtractor 55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const { in getU8() function in DataExtractor 95 return getU8(offset_ptr); in getUnsigned() 110 return (int8_t)getU8(offset_ptr); in getSigned()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 80 MinInstLength = debug_line_data.getU8(offset_ptr); in parse() 82 MaxOpsPerInst = debug_line_data.getU8(offset_ptr); in parse() 83 DefaultIsStmt = debug_line_data.getU8(offset_ptr); in parse() 84 LineBase = debug_line_data.getU8(offset_ptr); in parse() 85 LineRange = debug_line_data.getU8(offset_ptr); in parse() 86 OpcodeBase = debug_line_data.getU8(offset_ptr); in parse() 90 uint8_t op_len = debug_line_data.getU8(offset_ptr); in parse() 266 uint8_t opcode = debug_line_data.getU8(offset_ptr); in parse() 275 uint8_t sub_opcode = debug_line_data.getU8(offset_ptr); in parse()
|
D | DWARFDebugArangeSet.cpp | 46 HeaderData.AddrSize = data.getU8(offset_ptr); in extract() 47 HeaderData.SegSize = data.getU8(offset_ptr); in extract()
|
D | DWARFDebugFrame.cpp | 103 uint8_t Opcode = Data.getU8(Offset); in parseInstructions() 138 addInstruction(Opcode, Data.getU8(Offset)); in parseInstructions() 425 uint8_t c = Data.getU8(&Offset); in dumpDataAux() 468 uint8_t Version = Data.getU8(&Offset); in parse()
|
D | DWARFAbbreviationDeclaration.cpp | 36 uint8_t ChildrenByte = Data.getU8(OffsetPtr); in extract()
|
D | DWARFFormValue.cpp | 165 Value.uval = data.getU8(offset_ptr); in extractValue() 179 Value.uval = data.getU8(offset_ptr); in extractValue() 280 uint8_t size = debug_info_data.getU8(offset_ptr); in skipValue()
|
D | DWARFDebugLoc.cpp | 86 data.getU8(&Offset))) != dwarf::DW_LLE_end_of_list_entry) { in parse()
|
D | DWARFUnit.cpp | 72 AddrSize = debug_info.getU8(offset_ptr); in extractImpl()
|
D | DWARFContext.cpp | 52 PubIndexEntryDescriptor desc(pubNames.getU8(&offset)); in dumpPubSection()
|
/external/llvm/include/llvm/Support/ |
D | DataExtractor.h | 147 uint8_t getU8(uint32_t *offset_ptr) const; 172 uint8_t *getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const;
|
/external/llvm/unittests/Support/ |
D | DataExtractorTest.cpp | 30 EXPECT_EQ(0x80U, DE.getU8(&offset)); in TEST()
|
/external/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 672 DE.getU8(&Offset, Unused, 12); in printCodeViewSymbolsSubsection() 674 DE.getU8(&Offset, Unused, 12); in printCodeViewSymbolsSubsection() 680 DE.getU8(&Offset, Unused, 3); in printCodeViewSymbolsSubsection()
|