OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getU64
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Support/
DataExtractor.cpp
81
uint64_t DataExtractor::
getU64
(uint32_t *offset_ptr) const {
85
uint64_t *DataExtractor::
getU64
(uint32_t *offset_ptr, uint64_t *dst,
101
return
getU64
(offset_ptr);
116
return (int64_t)
getU64
(offset_ptr);
/external/llvm/include/llvm/Support/
DataExtractor.h
273
uint64_t
getU64
(uint32_t *offset_ptr) const;
298
uint64_t *
getU64
(uint32_t *offset_ptr, uint64_t *dst, uint32_t count) const;
/external/llvm/unittests/Support/
DataExtractorTest.cpp
39
EXPECT_EQ(0x8090FFFF80000000ULL, DE.
getU64
(&offset));
61
EXPECT_EQ(0x80FFFF9080ULL, DE.
getU64
(&offset));
/external/llvm/lib/DebugInfo/
DWARFFormValue.cpp
138
Value.uval = data.
getU64
(offset_ptr);
183
Value.uval = data.
getU64
(offset_ptr);
DWARFDebugFrame.cpp
324
Length = Data.
getU64
(&Offset);
DWARFContext.cpp
523
OriginalSize = extractor.
getU64
(&Offset);
Completed in 1597 milliseconds