Searched defs:M1 (Results 1 - 25 of 39) sorted by relevance

12

/external/clang/test/Preprocessor/
H A Dmacro_paste_simple.c9 #define M1(A) A macro
11 B: M1(M2(##))
H A Dmacro_rescan.c3 #define M1(a) (a+1) macro
6 int ei_1 = M2(M1)(17);
9 int ei_2 = (M2(M1))(17);
10 // CHECK: {{^}}int ei_2 = (M1)(17);{{$}}
H A Dpp-record.c25 #define M1 c macro
28 FM2(M1, M2);
/external/clang/test/PCH/
H A Dmacro-redef.c11 #define M1 0 // expected-note {{previous}} macro
12 #define M1 1 // expected-warning {{redefined}} macro
25 int x = M1; // expected-note {{previous}}
/external/libcxx/test/containers/associative/multimap/
H A Dscary.pass.cpp20 typedef std::map<int, int> M1; typedef
23 M1::iterator j = i;
/external/libcxx/test/containers/associative/multiset/
H A Dscary.pass.cpp20 typedef std::set<int> M1; typedef
23 M1::iterator j = i;
/external/libcxx/test/containers/unord/unord.multimap/
H A Dscary.pass.cpp20 typedef std::unordered_map<int, int> M1; typedef
23 M1::iterator j = i;
/external/libcxx/test/containers/unord/unord.multiset/
H A Dscary.pass.cpp20 typedef std::unordered_set<int> M1; typedef
23 M1::iterator j = i;
/external/clang/test/Misc/
H A Dmacro-backtrace.c4 #define M1(A, B) ((A) < (B)) macro
5 #define M2(A, B) M1(A, B)
31 // CHECK-LIMIT: #define M2(A, B) M1(A, B)
32 // CHECK-LIMIT: macro-backtrace.c:4:23: note: expanded from macro 'M1'
33 // CHECK-LIMIT: #define M1(A, B) ((A) < (B))
44 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:4:23: note: expanded from macro 'M1'
H A Dcaret-diags-macros.c3 #define M1(x) x macro
6 M1(
10 // CHECK: {{.*}}:3:{{[0-9]+}}: note: expanded from macro 'M1'
/external/clang/test/SemaCXX/
H A Dswitch-implicit-fallthrough-macro.cpp35 #define M1 [[clang::fallthrough]] macro
37 #define M2 M1
51 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'M1;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
58 #undef M1 macro
/external/llvm/unittests/Support/
H A DMemoryTest.cpp45 bool doesOverlap(MemoryBlock M1, MemoryBlock M2) { argument
46 if (M1.base() == M2.base())
49 if (M1.base() > M2.base())
50 return (unsigned char *)M2.base() + M2.size() > M1.base();
52 return (unsigned char *)M1.base() + M1.size() > M2.base();
61 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC); local
64 EXPECT_NE((void*)nullptr, M1.base());
65 EXPECT_LE(sizeof(int), M1.size());
67 EXPECT_FALSE(Memory::releaseMappedMemory(M1));
72 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); local
107 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags,EC); local
126 MemoryBlock M1 = Memory::allocateMappedMemory(sizeof(int), nullptr, Flags, local
184 MemoryBlock M1 = Memory::allocateMappedMemory(2 * sizeof(int), nullptr, Flags, local
241 MemoryBlock M1 = Memory::allocateMappedMemory(16, nullptr, Flags, EC); local
267 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC); local
289 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC); local
315 MemoryBlock M1 = Memory::allocateMappedMemory(16, &Near, Flags, EC); local
341 MemoryBlock M1 = Memory::allocateMappedMemory(15, &Near, Flags, EC); local
[all...]
H A DCommandLineTest.cpp55 StackOption(const M0t &M0, const M1t &M1) : Base(M0, M1) {} argument
59 StackOption(const M0t &M0, const M1t &M1, const M2t &M2) : Base(M0, M1, M2) {} argument
63 StackOption(const M0t &M0, const M1t &M1, const M2t &M2, const M3t &M3) argument
64 : Base(M0, M1, M2, M3) {}
/external/clang/test/CodeGenCXX/
H A Dcopy-assign-synthesis.cpp21 M() : M1(10), M2(11) , auM1(12) {}
22 int M1; member in struct:M
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
H A Dcopy-assign-synthesis-1.cpp25 M() : M1(10), M2(11) , auM1(12) {}
26 int M1; member in struct:M
29 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
/external/clang/unittests/Driver/
H A DMultilibTest.cpp54 Multilib M1, M2; local
55 M1.flag("+foo");
57 ASSERT_TRUE(M1 == M2) << "Multilibs with the same flag should be the same";
61 Multilib M1, M2; local
62 M1.flag("+foo");
64 ASSERT_FALSE(M1 == M2) << "Multilibs with conflicting flags are not the same";
65 ASSERT_FALSE(M2 == M1)
70 Multilib M1, M2; local
72 ASSERT_FALSE(M1 == M2) << "Flags make Multilibs different";
76 Multilib M1, M local
146 Multilib M1; local
[all...]
/external/llvm/unittests/ExecutionEngine/JIT/
H A DMultiJITTest.cpp38 void createModule1(LLVMContext &Context1, Module *&M1, Function *&FooF1) { argument
39 M1 = new Module("test1", Context1);
40 LoadAssemblyInto(M1,
52 FooF1 = M1->getFunction("foo1");
74 Module *M1 = nullptr; local
76 createModule1(Context1, M1, FooF1);
84 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1).create());
104 Module *M1 = nullptr; local
106 createModule1(Context1, M1, FooF1);
114 std::unique_ptr<ExecutionEngine> EE1(EngineBuilder(M1)
138 Module *M1 = nullptr; local
[all...]
/external/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp618 std::unique_ptr<Module> M1 = parseAssembly( local
634 LazyCallGraph CG1(*M1);
641 LazyCallGraph::Node &A = *CG1.lookup(lookupFunction(*M1, "a"));
642 LazyCallGraph::Node &B = *CG1.lookup(lookupFunction(*M1, "b"));
643 LazyCallGraph::Node &C = *CG1.lookup(lookupFunction(*M1, "c"));
665 std::unique_ptr<Module> M1 = parseAssembly( local
687 LazyCallGraph CG1(*M1);
694 LazyCallGraph::Node &A = *CG1.lookup(lookupFunction(*M1, "a"));
695 LazyCallGraph::Node &B = *CG1.lookup(lookupFunction(*M1, "b"));
696 LazyCallGraph::Node &C = *CG1.lookup(lookupFunction(*M1, "
[all...]
H A DScalarEvolutionTest.cpp65 const SCEVMulExpr *M1 = cast<SCEVMulExpr>(P1); local
70 EXPECT_EQ(cast<SCEVConstant>(M1->getOperand(0))->getValue()->getZExtValue(),
77 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V1);
86 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V0);
/external/chromium_org/third_party/mesa/src/src/mesa/sparc/
H A Dsparc_matrix.h36 #define M1 %f17 macro
/external/chromium_org/third_party/opus/src/celt/
H A Dmathops.h221 #define M1 32767 macro
230 return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_P15(M4, x)))))));
233 #undef M1 macro
/external/chromium_org/third_party/speex/libspeex/
H A Dmath_approx.h274 #define M1 32767 macro
281 return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_P15(M4, x)))))));
284 #undef M1 macro
/external/clang/lib/Driver/
H A DMultilib.cpp153 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2) { argument
155 Ms.push_back(M1);
160 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument
163 Ms.push_back(M1);
169 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument
172 Ms.push_back(M1);
179 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument
183 Ms.push_back(M1);
/external/libopus/celt/
H A Dmathops.h221 #define M1 32767 macro
230 return MULT16_16_P15(x, ADD32(M1, MULT16_16_P15(x, ADD32(M2, MULT16_16_P15(x, ADD32(M3, MULT16_16_P15(M4, x)))))));
233 #undef M1 macro
/external/llvm/tools/bugpoint/
H A DExtractFunction.cpp225 /// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
226 /// M1 has all of the global variables. If M2 contains any functions that are
229 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2, argument
231 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
268 new GlobalVariable(*M1, M1Init->getType(), false,
274 assert(GV && "Not a clone of M1?");

Completed in 386 milliseconds

12