Home
last modified time | relevance | path

Searched refs:getU8 (Results 1 – 10 of 10) sorted by relevance

/external/llvm/lib/Support/
DDataExtractor.cpp50 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/
DDWARFDebugLine.cpp178 prologue->MinInstLength = debug_line_data.getU8(offset_ptr); in parsePrologue()
179 prologue->DefaultIsStmt = debug_line_data.getU8(offset_ptr); in parsePrologue()
180 prologue->LineBase = debug_line_data.getU8(offset_ptr); in parsePrologue()
181 prologue->LineRange = debug_line_data.getU8(offset_ptr); in parsePrologue()
182 prologue->OpcodeBase = debug_line_data.getU8(offset_ptr); in parsePrologue()
186 uint8_t op_len = debug_line_data.getU8(offset_ptr); in parsePrologue()
241 uint8_t opcode = debug_line_data.getU8(offset_ptr); in parseStatementTable()
250 uint8_t sub_opcode = debug_line_data.getU8(offset_ptr); in parseStatementTable()
DDWARFDebugFrame.cpp103 uint8_t Opcode = Data.getU8(Offset); in parseInstructions()
137 addInstruction(Opcode, Data.getU8(Offset)); in parseInstructions()
302 uint8_t c = Data.getU8(&Offset); in dumpDataAux()
345 uint8_t Version = Data.getU8(&Offset); in parse()
DDWARFDebugArangeSet.cpp72 Header.AddrSize = data.getU8(offset_ptr); in extract()
73 Header.SegSize = data.getU8(offset_ptr); in extract()
DDWARFCompileUnit.cpp33 AddrSize = debug_info.getU8(offset_ptr); in extract()
64 AddrSize = debug_info_data.getU8(&offset); in extract()
DDWARFFormValue.cpp119 Value.uval = data.getU8(offset_ptr); in extractValue()
133 Value.uval = data.getU8(offset_ptr); in extractValue()
230 uint8_t size = debug_info_data.getU8(offset_ptr); in skipValue()
DDWARFAbbreviationDeclaration.cpp29 HasChildren = data.getU8(offset_ptr); in extract()
DDWARFDebugInfoEntry.cpp140 form_size = debug_info_data.getU8(&offset); in extractFast()
276 form_size = debug_info_data.getU8(&offset); in extract()
/external/llvm/include/llvm/Support/
DDataExtractor.h148 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/unittests/Support/
DDataExtractorTest.cpp30 EXPECT_EQ(0x80U, DE.getU8(&offset)); in TEST()