Home
last modified time | relevance | path

Searched refs:Ms (Results 1 – 25 of 67) sorted by relevance

123

/external/llvm/include/llvm/ExecutionEngine/Orc/
DLazyEmittingLayer.h100 create(BaseLayerT &B, ModuleSetT Ms, MemoryManagerPtrT MemMgr,
117 EmissionDeferredSetImpl(ModuleSetT Ms, in EmissionDeferredSetImpl() argument
120 : Ms(std::move(Ms)), MemMgr(std::move(MemMgr)), in EmissionDeferredSetImpl()
152 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr), in emitToBaseLayer()
195 for (const auto &M : Ms) { in buildMangledSymbols()
208 ModuleSetT Ms; variable
229 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() argument
234 EmissionDeferredSet::create(BaseLayer, std::move(Ms), std::move(MemMgr), in addModuleSet()
288 BaseLayerT &B, ModuleSetT Ms, MemoryManagerPtrT MemMgr, in create() argument
292 return llvm::make_unique<EDS>(std::move(Ms), std::move(MemMgr), in create()
DIRTransformLayer.h45 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() argument
49 for (auto I = Ms.begin(), E = Ms.end(); I != E; ++I) in addModuleSet()
52 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr), in addModuleSet()
DGlobalMappingLayer.h44 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() argument
47 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr), in addModuleSet()
DIRCompileLayer.h59 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() argument
65 for (const auto &M : Ms) { in addModuleSet()
DCompileOnDemandLayer.h184 ModuleSetHandleT addModuleSet(ModuleSetT Ms, in addModuleSet() argument
200 std::vector<std::unique_ptr<Module>> Ms; in addModuleSet() local
201 Ms.push_back(std::move(M)); in addModuleSet()
202 return B.addModuleSet(std::move(Ms), &MemMgrRef, std::move(R)); in addModuleSet()
206 for (auto &M : Ms) in addModuleSet()
/external/llvm/test/TableGen/
Dsubst.td9 def Ms : Honorific<"Ms.">;
23 def JaneSmith : AName<"Jane LAST", Ms>;
45 // CHECK-NEXT: Honorific honorific = Ms;
71 // CHECK-NEXT: def Ms {
72 // CHECK-NEXT: string honorific = "Ms.";
/external/clang/lib/Driver/
DMultilib.cpp281 const multilib_list &Ms) { in filterCopy() argument
282 multilib_list Copy(Ms); in filterCopy()
287 void MultilibSet::filterInPlace(FilterCallback F, multilib_list &Ms) { in filterInPlace() argument
288 Ms.erase(std::remove_if(Ms.begin(), Ms.end(), F), Ms.end()); in filterInPlace()
/external/swiftshader/third_party/LLVM/test/TableGen/
Dsubst.td14 def Ms : Honorific<"Ms.">;
28 def JaneSmith : AName<"Jane LAST", Ms>;
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
DKaleidoscopeJIT.h76 std::vector<std::unique_ptr<Module>> Ms; in addModule() local
77 Ms.push_back(std::move(M)); in addModule()
81 return CompileLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
DKaleidoscopeJIT.h86 std::vector<std::unique_ptr<Module>> Ms; in addModule() local
87 Ms.push_back(std::move(M)); in addModule()
91 return OptimizeLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
DKaleidoscopeJIT.h96 std::vector<std::unique_ptr<Module>> Ms; in addModule() local
97 Ms.push_back(std::move(M)); in addModule()
101 return CODLayer.addModuleSet(std::move(Ms), in addModule()
/external/clang/include/clang/Driver/
DMultilib.h127 MultilibSet &Either(ArrayRef<Multilib> Ms);
170 static multilib_list filterCopy(FilterCallback F, const multilib_list &Ms);
173 static void filterInPlace(FilterCallback F, multilib_list &Ms);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
DKaleidoscopeJIT.h122 std::vector<std::unique_ptr<Module>> Ms; in addModule() local
123 Ms.push_back(std::move(M)); in addModule()
127 return OptimizeLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
DKaleidoscopeJIT.h150 std::vector<std::unique_ptr<Module>> Ms; in addModule() local
151 Ms.push_back(std::move(M)); in addModule()
155 return OptimizeLayer.addModuleSet(std::move(Ms), in addModule()
/external/llvm/unittests/ExecutionEngine/Orc/
DOrcTestCommon.h118 ModuleSetHandleT addModuleSet(ModuleSetT Ms, MemoryManagerPtrT MemMgr, in addModuleSet() argument
120 return AddModuleSet(std::move(Ms), std::move(MemMgr), std::move(Resolver)); in addModuleSet()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DCommandLine.h1156 void apply(Opt *O, const Mod &M, const Mods &... Ms) {
1158 apply(O, Ms...);
1329 explicit opt(const Mods &... Ms)
1331 apply(this, Ms...);
1498 explicit list(const Mods &... Ms)
1500 apply(this, Ms...);
1635 explicit bits(const Mods &... Ms)
1637 apply(this, Ms...);
1692 explicit alias(const Mods &... Ms)
1694 apply(this, Ms...);
/external/llvm/include/llvm/Support/
DCommandLine.h1138 void apply(Opt *O, const Mod &M, const Mods &... Ms) {
1140 apply(O, Ms...);
1311 explicit opt(const Mods &... Ms)
1313 apply(this, Ms...);
1480 explicit list(const Mods &... Ms)
1482 apply(this, Ms...);
1617 explicit bits(const Mods &... Ms)
1619 apply(this, Ms...);
1671 explicit alias(const Mods &... Ms)
1673 apply(this, Ms...);
/external/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h169 std::vector<Module *> Ms; in addModule() local
170 Ms.push_back(&*Modules.back()); in addModule()
171 LazyEmitLayer.addModuleSet(std::move(Ms), &MemMgr, &Resolver); in addModule()
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h1253 template <typename... Ms>
1254 VariadicOperatorMatcher<Ms...> operator()(Ms &&... Ps) const {
1255 static_assert(MinCount <= sizeof...(Ms) && sizeof...(Ms) <= MaxCount,
1257 return VariadicOperatorMatcher<Ms...>(Op, std::forward<Ms>(Ps)...);
/external/icu/icu4c/source/data/brkitr/
Den.txt105 "Ms.",
/external/llvm/docs/tutorial/
DBuildingAJIT2.rst104 return OptimizeLayer.addModuleSet(std::move(Ms),
177 ModuleSetHandleT addModuleSet(ModuleSetT Ms,
181 for (auto I = Ms.begin(), E = Ms.end(); I != E; ++I)
184 return BaseLayer.addModuleSet(std::move(Ms), std::move(MemMgr),
/external/ImageMagick/tests/
Dinput_256c.miff7 …kheKjcTifWd{GgxWqfUutVvcLjfg{yimosXX�\^�]f�f\�rq�yw�ns�tx�]�>^�Ge�Jk�Km�Tq�Ms�Wn�Yt�gw�u{�hw�wk�hx…
/external/ImageMagick/PerlMagick/t/reference/read/
Dinput_im8.miff14 …kheKjcTifWd{GgxWqfUutVvcLjfg{yimosXX�\^�]f�f\�rq�yw�ns�tx�]�>^�Ge�Jk�Km�Tq�Ms�Wn�Yt�gw�u{�hw�wk�hx…
Dinput_xpm.miff14 …kheKjcTifWd{GgxWqfUutVvcLjfg{yimosXX�\^�]f�f\�rq�yw�ns�tx�]�>^�Ge�Jk�Km�Tq�Ms�Wn�Yt�gw�u{�hw�wk�hx…
/external/llvm/lib/Target/Hexagon/
DRDFGraph.cpp551 NodeList Ms = members_if(EqBB, G); in findBlock() local
552 if (!Ms.empty()) in findBlock()
553 return Ms[0]; in findBlock()
1451 static auto HasUsedDef = [](NodeList &Ms) -> bool { in removeUnusedPhis() argument
1452 for (auto M : Ms) { in removeUnusedPhis()

123