Home
last modified time | relevance | path

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

12345678910>>...12

/external/libcxx/test/std/utilities/time/time.cal/time.cal.weekday/time.cal.weekday.members/
Dplus_minus_equal.pass.cpp24 template <typename M, typename Ms>
28 if (static_cast<unsigned>(m1 += Ms{ 1}) != 2) return false; in testConstexpr()
29 if (static_cast<unsigned>(m1 += Ms{ 2}) != 4) return false; in testConstexpr()
30 if (static_cast<unsigned>(m1 += Ms{ 4}) != 1) return false; in testConstexpr()
31 if (static_cast<unsigned>(m1 -= Ms{ 1}) != 0) return false; in testConstexpr()
32 if (static_cast<unsigned>(m1 -= Ms{ 2}) != 5) return false; in testConstexpr()
33 if (static_cast<unsigned>(m1 -= Ms{ 4}) != 1) return false; in testConstexpr()
/external/libcxx/test/std/utilities/time/time.cal/time.cal.month/time.cal.month.members/
Dplus_minus_equal.pass.cpp23 template <typename M, typename Ms>
27 if (static_cast<unsigned>(m1 += Ms{ 1}) != 2) return false; in testConstexpr()
28 if (static_cast<unsigned>(m1 += Ms{ 2}) != 4) return false; in testConstexpr()
29 if (static_cast<unsigned>(m1 += Ms{ 8}) != 12) return false; in testConstexpr()
30 if (static_cast<unsigned>(m1 -= Ms{ 1}) != 11) return false; in testConstexpr()
31 if (static_cast<unsigned>(m1 -= Ms{ 2}) != 9) return false; in testConstexpr()
32 if (static_cast<unsigned>(m1 -= Ms{ 8}) != 1) return false; in testConstexpr()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-modextract/
Dllvm-modextract.cpp46 std::vector<BitcodeModule> Ms = ExitOnErr(getBitcodeModuleList(*MB)); in main() local
49 if (ModuleIndex >= Ms.size()) { in main()
52 << Ms.size() << " module(s)\n"; in main()
64 Result.append(Ms[ModuleIndex].getBuffer().begin(), in main()
65 Ms[ModuleIndex].getBuffer().end()); in main()
66 Writer.copyStrtab(Ms[ModuleIndex].getStrtab()); in main()
72 std::unique_ptr<Module> M = ExitOnErr(Ms[ModuleIndex].parseModule(Context)); in main()
/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/swiftshader/third_party/llvm-7.0/llvm/test/TableGen/
Dsubst.td9 def Ms : Honorific<"Ms.">;
23 def JaneSmith : AName<"Jane LAST", Ms>;
42 // CHECK-NEXT: Honorific honorific = Ms;
62 // CHECK-NEXT: def Ms {
63 // CHECK-NEXT: string honorific = "Ms.";
/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/libcxx/test/std/utilities/time/time.cal/time.cal.month/time.cal.month.nonmembers/
Dminus.pass.cpp31 template <typename M, typename Ms>
36 Ms offset{3}; in testConstexpr()
42 if (M{1} - M{2} != Ms{11}) return false; in testConstexpr()
Dplus.pass.cpp35 template <typename M, typename Ms>
39 Ms offset{4}; in testConstexpr()
43 if (M{2} + Ms{11} != M{1}) return false; in testConstexpr()
/external/libcxx/test/std/utilities/time/time.cal/time.cal.weekday/time.cal.weekday.nonmembers/
Dplus.pass.cpp36 template <typename M, typename Ms>
40 Ms offset{4}; in testConstexpr()
44 if (M{1} + Ms{6} != M{0}) return false; in testConstexpr()
/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/swiftshader/third_party/llvm-7.0/llvm/tools/lli/
Dlli.cpp340 int runOrcLazyJIT(LLVMContext &Ctx, std::vector<std::unique_ptr<Module>> Ms,
375 std::vector<std::unique_ptr<Module>> Ms; in main() local
376 Ms.push_back(std::move(Owner)); in main()
378 Ms.push_back(parseIRFile(ExtraMod, Err, Context)); in main()
379 if (!Ms.back()) in main()
386 return runOrcLazyJIT(Context, std::move(Ms), Args); in main()
739 int runOrcLazyJIT(LLVMContext &Ctx, std::vector<std::unique_ptr<Module>> Ms, in runOrcLazyJIT() argument
742 if (Ms.empty()) in runOrcLazyJIT()
754 const auto &TT = Ms.front()->getTargetTriple(); in runOrcLazyJIT()
792 for (auto &M : Ms) { in runOrcLazyJIT()
/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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DDebugCounter.cpp19 explicit DebugCounterList(Mods &&... Ms) : Base(std::forward<Mods>(Ms)...) {} in DebugCounterList() argument
/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-7.0/llvm/include/llvm/Support/
DCommandLine.h1173 void apply(Opt *O, const Mod &M, const Mods &... Ms) {
1175 apply(O, Ms...);
1362 explicit opt(const Mods &... Ms)
1364 apply(this, Ms...);
1538 explicit list(const Mods &... Ms)
1540 apply(this, Ms...);
1679 explicit bits(const Mods &... Ms)
1681 apply(this, Ms...);
1738 explicit alias(const Mods &... Ms)
1740 apply(this, Ms...);

12345678910>>...12