HomeSort by relevance Sort by last modified time
    Searched defs:M2 (Results 1 - 25 of 44) sorted by null

1 2

  /external/clang/test/Preprocessor/
macro_paste_simple.c 10 #define M2(X) X
11 B: M1(M2(##))
macro_rescan.c 4 #define M2(b) b
6 int ei_1 = M2(M1)(17);
9 int ei_2 = (M2(M1))(17);
pp-record.c 26 #define M2 int
28 FM2(M1, M2);
microsoft-ext.c 4 # define M2(x, y) x + y
6 # define M(x, y) M2(x, P(x, y))
  /external/clang/test/PCH/
macro-redef.c 14 #define M2 3
19 #define M2 4 // expected-warning {{redefined}}
26 int x = M2; // expected-error {{redefinition}}
  /external/libcxx/test/containers/associative/multimap/
scary.pass.cpp 21 typedef std::multimap<int, int> M2;
22 M2::iterator i;
  /external/libcxx/test/containers/associative/multiset/
scary.pass.cpp 21 typedef std::multiset<int> M2;
22 M2::iterator i;
  /external/libcxx/test/containers/unord/unord.multimap/
scary.pass.cpp 21 typedef std::unordered_multimap<int, int> M2;
22 M2::iterator i;
  /external/libcxx/test/containers/unord/unord.multiset/
scary.pass.cpp 21 typedef std::unordered_multiset<int> M2;
22 M2::iterator i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/
scary.pass.cpp 21 typedef std::multimap<int, int> M2;
22 M2::iterator i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/
scary.pass.cpp 21 typedef std::multiset<int> M2;
22 M2::iterator i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
scary.pass.cpp 21 typedef std::unordered_multimap<int, int> M2;
22 M2::iterator i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
scary.pass.cpp 21 typedef std::unordered_multiset<int> M2;
22 M2::iterator i;
  /external/clang/test/Parser/
ms-inline-asm.c 5 #define M2 int
9 void t3(void) { __asm M2 0x2c }
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
stat.h 8 double n, mean, M2;
21 stats->M2 = 0.0;
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p14.cpp 56 namespace M2 {
70 void M2::MInner::Bar::bar() {
  /external/clang/test/Misc/
macro-backtrace.c 5 #define M2(A, B) M1(A, B)
6 #define M3(A, B) M2(A, B)
29 // CHECK-LIMIT: #define M3(A, B) M2(A, B)
30 // CHECK-LIMIT: macro-backtrace.c:5:18: note: expanded from macro 'M2'
31 // CHECK-LIMIT: #define M2(A, B) M1(A, B)
43 // CHECK-NO-CARETS-NEXT: macro-backtrace.c:5:18: note: expanded from macro 'M2'
  /external/lldb/tools/lldb-perf/lib/
Metric.cpp 68 T M2 = 0;
74 M2 = M2+delta*(x-mean);
78 variance = M2 / n;
80 variance = M2 / (n - 1);
  /external/llvm/unittests/Support/
MemoryTest.cpp 45 bool doesOverlap(MemoryBlock M1, MemoryBlock M2) {
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();
74 MemoryBlock M2 = Memory::allocateMappedMemory(64, nullptr, Flags, EC);
81 EXPECT_NE((void*)nullptr, M2.base());
82 EXPECT_LE(64U, M2.size());
86 EXPECT_FALSE(doesOverlap(M1, M2));
    [all...]
  /external/clang/test/SemaCXX/
switch-implicit-fallthrough-macro.cpp 37 #define M2 M1
39 #define M2
52 // there was an idea that this ^ should be M2
59 #undef M2
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p4-1y.cpp 55 auto M2 = [] -> auto&& { return si; }; // expected-error{{lambda requires '()'}}
  /external/clang/test/CodeGenCXX/
copy-assign-synthesis.cpp 21 M() : M1(10), M2(11) , auM1(12) {}
23 int M2;
25 printf("M1 = %d M2 = %d auM1 = %d auM2 = %d\n", M1, M2, auM1, auM2);
  /external/clang/unittests/Driver/
MultilibTest.cpp 54 Multilib M1, M2;
56 M2.flag("+foo");
57 ASSERT_TRUE(M1 == M2) << "Multilibs with the same flag should be the same";
61 Multilib M1, M2;
63 M2.flag("-foo");
64 ASSERT_FALSE(M1 == M2) << "Multilibs with conflicting flags are not the same";
65 ASSERT_FALSE(M2 == M1)
70 Multilib M1, M2;
71 M2.flag("+foo");
72 ASSERT_FALSE(M1 == M2) << "Flags make Multilibs different"
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 55 void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) {
56 M2 = new Module("test2", Context2);
57 LoadAssemblyInto(M2,
69 FooF2 = M2->getFunction("foo2");
79 Module *M2 = nullptr;
81 createModule2(Context2, M2, FooF2);
86 std::unique_ptr<ExecutionEngine> EE2(EngineBuilder(M2).create());
109 Module *M2 = nullptr;
111 createModule2(Context2, M2, FooF2);
116 std::unique_ptr<ExecutionEngine> EE2(EngineBuilder(M2).create())
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
mathops.h 222 #define M2 -21
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)))))));
234 #undef M2

Completed in 365 milliseconds

1 2