OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getU32
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/Support/
DataExtractor.cpp
71
uint32_t DataExtractor::
getU32
(uint32_t *offset_ptr) const {
75
uint32_t *DataExtractor::
getU32
(uint32_t *offset_ptr, uint32_t *dst,
99
return
getU32
(offset_ptr);
114
return (int32_t)
getU32
(offset_ptr);
/external/llvm/unittests/Support/
DataExtractorTest.cpp
36
EXPECT_EQ(0x8090FFFFU, DE.
getU32
(&offset));
47
EXPECT_EQ(data, DE.
getU32
(&offset, data, 2));
58
EXPECT_EQ(0xFFFF9080U, DE.
getU32
(&offset));
68
EXPECT_EQ(data, DE.
getU32
(&offset, data, 2));
/external/llvm/include/llvm/Support/
DataExtractor.h
232
uint32_t
getU32
(uint32_t *offset_ptr) const;
257
uint32_t *
getU32
(uint32_t *offset_ptr, uint32_t *dst, uint32_t count) const;
/external/llvm/lib/DebugInfo/
DWARFFormValue.cpp
116
Value.uval = data.
getU32
(offset_ptr);
131
Value.uval = data.
getU32
(offset_ptr);
148
Value.uval = data.
getU32
(offset_ptr) + R.second;
150
Value.uval = data.
getU32
(offset_ptr);
174
Value.uval = data.
getU32
(offset_ptr) + R.second;
176
Value.uval = data.
getU32
(offset_ptr);
239
uint32_t size = debug_info_data.
getU32
(offset_ptr);
459
uint32_t soffset = DSO->
getU32
(&offset);
DWARFCompileUnit.cpp
30
Length = debug_info.
getU32
(offset_ptr);
32
abbrOffset = debug_info.
getU32
(offset_ptr);
60
Length = debug_info_data.
getU32
(&offset);
62
bool abbrevsOK = debug_info_data.
getU32
(&offset) == abbrevs->getOffset();
DWARFDebugArangeSet.cpp
69
HeaderData.Length = data.
getU32
(offset_ptr);
71
HeaderData.CuOffset = data.
getU32
(offset_ptr);
DWARFContext.cpp
104
OS << "Length: " << pubNames.
getU32
(&offset) << "\n";
106
OS << "Offset in .debug_info: " << pubNames.
getU32
(&offset) << "\n";
107
OS << "Size: " << pubNames.
getU32
(&offset) << "\n";
110
uint32_t n = pubNames.
getU32
(&offset);
153
OS << format("%8.8x\n", strOffsetExt.
getU32
(&offset));
DWARFDebugFrame.cpp
145
addInstruction(Opcode, Data.
getU32
(Offset));
316
uint64_t Length = Data.
getU32
(&Offset);
DWARFDebugLine.cpp
171
prologue->TotalLength = debug_line_data.
getU32
(offset_ptr);
176
prologue->PrologueLength = debug_line_data.
getU32
(offset_ptr);
Completed in 668 milliseconds