Searched refs:MDs (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp66 SmallVector<std::pair<unsigned, MDNode*>, 8> MDs; local
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; local
444 I->getAllMetadataOtherThanDebugLoc(MDs);
445 for (unsigned i = 0, e = MDs.size(); i != e; ++i) {
446 MDNode *N = MDs[i].second;
H A DBitcodeWriter.cpp705 SmallVector<std::pair<unsigned, MDNode*>, 4> MDs; local
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));

Completed in 87 milliseconds