OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getU32
(Results
1 - 8
of
8
) sorted by null
/external/llvm/include/llvm/Support/
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;
/external/llvm/lib/DebugInfo/
DWARFCompileUnit.cpp
32
Length = debug_info.
getU32
(offset_ptr);
34
abbrOffset = debug_info.
getU32
(offset_ptr);
62
Length = debug_info_data.
getU32
(&offset);
64
bool abbrevsOK = debug_info_data.
getU32
(&offset) == abbrevs->getOffset();
DWARFFormValue.cpp
109
Value.uval = data.
getU32
(offset_ptr);
123
Value.uval = data.
getU32
(offset_ptr);
133
Value.uval = data.
getU32
(offset_ptr);
198
uint32_t size = debug_info_data.
getU32
(offset_ptr);
DWARFDebugArangeSet.cpp
69
Header.Length = data.
getU32
(offset_ptr);
71
Header.CuOffset = data.
getU32
(offset_ptr);
DWARFDebugInfoEntry.cpp
139
form_size = debug_info_data.
getU32
(&offset);
264
form_size = debug_info_data.
getU32
(&offset);
DWARFDebugLine.cpp
137
prologue->TotalLength = debug_line_data.
getU32
(offset_ptr);
142
prologue->PrologueLength = debug_line_data.
getU32
(offset_ptr);
/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
35
EXPECT_EQ(0x8090FFFFU, DE.
getU32
(&offset));
46
EXPECT_EQ(data, DE.
getU32
(&offset, data, 2));
57
EXPECT_EQ(0xFFFF9080U, DE.
getU32
(&offset));
67
EXPECT_EQ(data, DE.
getU32
(&offset, data, 2));
Completed in 2390 milliseconds