Searched refs:getU32 (Results 1 – 8 of 8) sorted by relevance
/external/llvm/unittests/Support/ |
D | DataExtractorTest.cpp | 35 EXPECT_EQ(0x8090FFFFU, DE.getU32(&offset)); in TEST() 46 EXPECT_EQ(data, DE.getU32(&offset, data, 2)); in TEST() 57 EXPECT_EQ(0xFFFF9080U, DE.getU32(&offset)); in TEST() 67 EXPECT_EQ(data, DE.getU32(&offset, data, 2)); in TEST()
|
/external/llvm/lib/DebugInfo/ |
D | DWARFCompileUnit.cpp | 32 Length = debug_info.getU32(offset_ptr); in extract() 34 abbrOffset = debug_info.getU32(offset_ptr); in extract() 62 Length = debug_info_data.getU32(&offset); in extract() 64 bool abbrevsOK = debug_info_data.getU32(&offset) == abbrevs->getOffset(); in extract()
|
D | DWARFFormValue.cpp | 109 Value.uval = data.getU32(offset_ptr); in extractValue() 123 Value.uval = data.getU32(offset_ptr); in extractValue() 133 Value.uval = data.getU32(offset_ptr); in extractValue() 198 uint32_t size = debug_info_data.getU32(offset_ptr); in skipValue()
|
D | DWARFDebugArangeSet.cpp | 69 Header.Length = data.getU32(offset_ptr); in extract() 71 Header.CuOffset = data.getU32(offset_ptr); in extract()
|
D | DWARFDebugLine.cpp | 138 prologue->TotalLength = debug_line_data.getU32(offset_ptr); in parsePrologue() 143 prologue->PrologueLength = debug_line_data.getU32(offset_ptr); in parsePrologue()
|
D | DWARFDebugInfoEntry.cpp | 139 form_size = debug_info_data.getU32(&offset); in extractFast() 262 form_size = debug_info_data.getU32(&offset); in extract()
|
/external/llvm/lib/Support/ |
D | DataExtractor.cpp | 71 uint32_t DataExtractor::getU32(uint32_t *offset_ptr) const { in getU32() function in DataExtractor 75 uint32_t *DataExtractor::getU32(uint32_t *offset_ptr, uint32_t *dst, in getU32() function in DataExtractor 99 return getU32(offset_ptr); in getUnsigned() 114 return (int32_t)getU32(offset_ptr); in getSigned()
|
/external/llvm/include/llvm/Support/ |
D | DataExtractor.h | 229 uint32_t getU32(uint32_t *offset_ptr) const; 254 uint32_t *getU32(uint32_t *offset_ptr, uint32_t *dst, uint32_t count) const;
|