HomeSort by relevance Sort by last modified time
    Searched defs:M2 (Results 26 - 50 of 111) sorted by null

12 3 4 5

  /external/clang/test/Preprocessor/
bigoutput.c 9 #define M2 M0 M0 M0 M0
10 #define M4 M2 M2 M2 M2
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/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
allocate.pass.cpp 78 memory_resource& M2 = R2;
80 M2.allocate(42);
  /prebuilts/go/darwin-x86/test/alias3.dir/
b.go 23 func (S) M2() Context { return Default }
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15470.dir/
a.go 8 M2() (x, _ int)
15 func (S) M2() (x, _ int) { return }
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15838.dir/
a.go 41 func (T) M2() {
  /prebuilts/go/darwin-x86/test/uintptrescapes.dir/
a.go 50 func (*t) M2(a ...uintptr) {
  /prebuilts/go/linux-x86/test/alias3.dir/
b.go 23 func (S) M2() Context { return Default }
  /prebuilts/go/linux-x86/test/fixedbugs/issue15470.dir/
a.go 8 M2() (x, _ int)
15 func (S) M2() (x, _ int) { return }
  /prebuilts/go/linux-x86/test/fixedbugs/issue15838.dir/
a.go 41 func (T) M2() {
  /prebuilts/go/linux-x86/test/uintptrescapes.dir/
a.go 50 func (*t) M2(a ...uintptr) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource/memory.resource.public/
allocate.pass.cpp 78 memory_resource& M2 = R2;
80 M2.allocate(42);
  /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/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...]
  /prebuilts/go/darwin-x86/test/
escape_iface.go 140 type M2 struct {
144 func (*M2) M() {
150 v := &M2{&i} // ERROR "&i does not escape" "&M2 literal does not escape"
156 v := &M2{&i} // ERROR "&i escapes to heap" "&M2 literal escapes to heap"
162 v := &M2{&i} // ERROR "&i does not escape" "&M2 literal does not escape"
164 v1 := x.(*M2)
169 v := &M2{&i} // ERROR "&i escapes to heap" "&M2 literal escapes to heap
    [all...]
nilptr2.go 36 var m2 *M2 var
96 {"m2.F()", func() { println(m2.F()) }},
97 {"m2.M.F()", func() { println(m2.M.F()) }},
125 type M2 struct {
  /prebuilts/go/linux-x86/test/
escape_iface.go 140 type M2 struct {
144 func (*M2) M() {
150 v := &M2{&i} // ERROR "&i does not escape" "&M2 literal does not escape"
156 v := &M2{&i} // ERROR "&i escapes to heap" "&M2 literal escapes to heap"
162 v := &M2{&i} // ERROR "&i does not escape" "&M2 literal does not escape"
164 v1 := x.(*M2)
169 v := &M2{&i} // ERROR "&i escapes to heap" "&M2 literal escapes to heap
    [all...]
nilptr2.go 36 var m2 *M2 var
96 {"m2.F()", func() { println(m2.F()) }},
97 {"m2.M.F()", func() { println(m2.M.F()) }},
125 type M2 struct {
  /external/clang/test/SemaCXX/
switch-implicit-fallthrough-macro.cpp 42 #define M2 M1
44 #define M2
57 // there was an idea that this ^ should be M2
64 #undef M2
  /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/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 51 void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) {
52 M2 = new Module("test2", Context2);
53 LoadAssemblyInto(M2,
65 FooF2 = M2->getFunction("foo2");
78 Module *M2 = 0;
80 createModule2(Context2, M2, FooF2);
85 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create());
108 Module *M2 = 0;
110 createModule2(Context2, M2, FooF2);
115 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create())
    [all...]
  /system/connectivity/wifilogd/tests/
memory_reader_unittest.cpp 92 constexpr struct M2 {
102 const auto& copy_of_second_message = memory_reader.CopyOutOrDie<M2>();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
Well1024a.java 47 private static final int M2 = 24;
57 super(K, M1, M2, M3);
64 super(K, M1, M2, M3, seed);
72 super(K, M1, M2, M3, seed);
79 super(K, M1, M2, M3, seed);

Completed in 512 milliseconds

12 3 4 5