OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MDs
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Transforms/Utils/
ValueMapper.cpp
188
SmallVector<std::pair<unsigned, MDNode *>, 4>
MDs
;
189
I->getAllMetadataOtherThanDebugLoc(
MDs
);
191
MI =
MDs
.begin(), ME =
MDs
.end(); MI != ME; ++MI) {
/external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp
66
SmallVector<std::pair<unsigned, MDNode*>, 8>
MDs
;
92
MDs
.clear();
93
I->getAllMetadataOtherThanDebugLoc(
MDs
);
94
for (unsigned i = 0, e =
MDs
.size(); i != e; ++i)
95
EnumerateMetadata(
MDs
[i].second);
443
SmallVector<std::pair<unsigned, MDNode*>, 8>
MDs
;
444
I->getAllMetadataOtherThanDebugLoc(
MDs
);
445
for (unsigned i = 0, e =
MDs
.size(); i != e; ++i) {
446
MDNode *N =
MDs
[i].second;
BitcodeWriter.cpp
550
} else if (const MDString *
MDS
= dyn_cast<MDString>(Vals[i].first)) {
564
Record.append(
MDS
->begin(),
MDS
->end());
628
SmallVector<std::pair<unsigned, MDNode*>, 4>
MDs
;
633
MDs
.clear();
634
I->getAllMetadataOtherThanDebugLoc(
MDs
);
637
if (
MDs
.empty()) continue;
641
for (unsigned i = 0, e =
MDs
.size(); i != e; ++i) {
642
Record.push_back(
MDs
[i].first);
643
Record.push_back(VE.getValueID(
MDs
[i].second))
[
all
...]
/external/llvm/lib/Transforms/IPO/
StripSymbols.cpp
355
SmallVector<MDNode *, 8>
MDs
;
358
MDs
.push_back(NMD->getOperand(i));
364
for (SmallVector<MDNode *, 8>::iterator I =
MDs
.begin(),
365
E =
MDs
.end(); I != E; ++I) {
379
SmallVector<MDNode *, 8>
MDs
;
382
MDs
.push_back(NMD->getOperand(i));
388
for (SmallVector<MDNode *, 8>::iterator I =
MDs
.begin(),
389
E =
MDs
.end(); I != E; ++I) {
/frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp
66
SmallVector<std::pair<unsigned, MDNode*>, 8>
MDs
;
92
MDs
.clear();
93
I->getAllMetadataOtherThanDebugLoc(
MDs
);
94
for (unsigned i = 0, e =
MDs
.size(); i != e; ++i)
95
EnumerateMetadata(
MDs
[i].second);
443
SmallVector<std::pair<unsigned, MDNode*>, 8>
MDs
;
444
I->getAllMetadataOtherThanDebugLoc(
MDs
);
445
for (unsigned i = 0, e =
MDs
.size(); i != e; ++i) {
446
MDNode *N =
MDs
[i].second;
BitcodeWriter.cpp
627
} else if (const MDString *
MDS
= dyn_cast<MDString>(Vals[i].first)) {
641
Record.append(
MDS
->begin(),
MDS
->end());
705
SmallVector<std::pair<unsigned, MDNode*>, 4>
MDs
;
710
MDs
.clear();
711
I->getAllMetadataOtherThanDebugLoc(
MDs
);
714
if (
MDs
.empty()) continue;
718
for (unsigned i = 0, e =
MDs
.size(); i != e; ++i) {
719
Record.push_back(
MDs
[i].first);
720
Record.push_back(VE.getValueID(
MDs
[i].second))
[
all
...]
Completed in 64 milliseconds