OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LayoutMap
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/IR/
DataLayout.h
148
mutable void *
LayoutMap
;
185
explicit DataLayout(StringRef LayoutDescription) :
LayoutMap
(nullptr) {
194
DataLayout(const DataLayout &DL) :
LayoutMap
(nullptr) { *this = DL; }
/external/llvm/lib/IR/
DataLayout.cpp
181
LayoutMap
= nullptr;
381
DataLayout::DataLayout(const Module *M) :
LayoutMap
(nullptr) {
548
delete static_cast<StructLayoutMap *>(
LayoutMap
);
549
LayoutMap
= nullptr;
557
if (!
LayoutMap
)
558
LayoutMap
= new StructLayoutMap();
560
StructLayoutMap *STM = static_cast<StructLayoutMap*>(
LayoutMap
);
Completed in 97 milliseconds