Home
last modified time | relevance | path

Searched refs:M2 (Results 1 – 25 of 447) sorted by relevance

12345678910>>...18

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/intrinsics/
Dxtype_mpy.ll45 declare i64 @llvm.hexagon.M2.mmpyl.s0(i64, i64)
47 %z = call i64 @llvm.hexagon.M2.mmpyl.s0(i64 %a, i64 %b)
52 declare i64 @llvm.hexagon.M2.mmpyl.s1(i64, i64)
54 %z = call i64 @llvm.hexagon.M2.mmpyl.s1(i64 %a, i64 %b)
59 declare i64 @llvm.hexagon.M2.mmpyh.s0(i64, i64)
61 %z = call i64 @llvm.hexagon.M2.mmpyh.s0(i64 %a, i64 %b)
66 declare i64 @llvm.hexagon.M2.mmpyh.s1(i64, i64)
68 %z = call i64 @llvm.hexagon.M2.mmpyh.s1(i64 %a, i64 %b)
73 declare i64 @llvm.hexagon.M2.mmpyl.rs0(i64, i64)
75 %z = call i64 @llvm.hexagon.M2.mmpyl.rs0(i64 %a, i64 %b)
[all …]
Dxtype_complex.ll52 declare i64 @llvm.hexagon.M2.cmpys.s0(i32, i32)
54 %z = call i64 @llvm.hexagon.M2.cmpys.s0(i32 %a, i32 %b)
59 declare i64 @llvm.hexagon.M2.cmpys.s1(i32, i32)
61 %z = call i64 @llvm.hexagon.M2.cmpys.s1(i32 %a, i32 %b)
66 declare i64 @llvm.hexagon.M2.cmpysc.s0(i32, i32)
68 %z = call i64 @llvm.hexagon.M2.cmpysc.s0(i32 %a, i32 %b)
73 declare i64 @llvm.hexagon.M2.cmpysc.s1(i32, i32)
75 %z = call i64 @llvm.hexagon.M2.cmpysc.s1(i32 %a, i32 %b)
80 declare i64 @llvm.hexagon.M2.cmacs.s0(i64, i32, i32)
82 %z = call i64 @llvm.hexagon.M2.cmacs.s0(i64 %a, i32 %b, i32 %c)
[all …]
/external/llvm/test/CodeGen/Hexagon/intrinsics/
Dxtype_mpy.ll45 declare i64 @llvm.hexagon.M2.mmpyl.s0(i64, i64)
47 %z = call i64 @llvm.hexagon.M2.mmpyl.s0(i64 %a, i64 %b)
52 declare i64 @llvm.hexagon.M2.mmpyl.s1(i64, i64)
54 %z = call i64 @llvm.hexagon.M2.mmpyl.s1(i64 %a, i64 %b)
59 declare i64 @llvm.hexagon.M2.mmpyh.s0(i64, i64)
61 %z = call i64 @llvm.hexagon.M2.mmpyh.s0(i64 %a, i64 %b)
66 declare i64 @llvm.hexagon.M2.mmpyh.s1(i64, i64)
68 %z = call i64 @llvm.hexagon.M2.mmpyh.s1(i64 %a, i64 %b)
73 declare i64 @llvm.hexagon.M2.mmpyl.rs0(i64, i64)
75 %z = call i64 @llvm.hexagon.M2.mmpyl.rs0(i64 %a, i64 %b)
[all …]
Dxtype_complex.ll52 declare i64 @llvm.hexagon.M2.cmpys.s0(i32, i32)
54 %z = call i64 @llvm.hexagon.M2.cmpys.s0(i32 %a, i32 %b)
59 declare i64 @llvm.hexagon.M2.cmpys.s1(i32, i32)
61 %z = call i64 @llvm.hexagon.M2.cmpys.s1(i32 %a, i32 %b)
66 declare i64 @llvm.hexagon.M2.cmpysc.s0(i32, i32)
68 %z = call i64 @llvm.hexagon.M2.cmpysc.s0(i32 %a, i32 %b)
73 declare i64 @llvm.hexagon.M2.cmpysc.s1(i32, i32)
75 %z = call i64 @llvm.hexagon.M2.cmpysc.s1(i32 %a, i32 %b)
80 declare i64 @llvm.hexagon.M2.cmacs.s0(i64, i32, i32)
82 %z = call i64 @llvm.hexagon.M2.cmacs.s0(i64 %a, i32 %b, i32 %c)
[all …]
/external/clang/unittests/Driver/
DMultilibTest.cpp54 Multilib M1, M2; in TEST() local
56 M2.flag("+foo"); in TEST()
57 ASSERT_TRUE(M1 == M2) << "Multilibs with the same flag should be the same"; in TEST()
61 Multilib M1, M2; in TEST() local
63 M2.flag("-foo"); in TEST()
64 ASSERT_FALSE(M1 == M2) << "Multilibs with conflicting flags are not the same"; in TEST()
65 ASSERT_FALSE(M2 == M1) in TEST()
70 Multilib M1, M2; in TEST() local
71 M2.flag("+foo"); in TEST()
72 ASSERT_FALSE(M1 == M2) << "Flags make Multilibs different"; in TEST()
[all …]
/external/llvm/unittests/Support/
DMemoryTest.cpp45 bool doesOverlap(MemoryBlock M1, MemoryBlock M2) { in doesOverlap() argument
46 if (M1.base() == M2.base()) in doesOverlap()
49 if (M1.base() > M2.base()) in doesOverlap()
50 return (unsigned char *)M2.base() + M2.size() > M1.base(); in doesOverlap()
52 return (unsigned char *)M1.base() + M1.size() > M2.base(); in doesOverlap()
74 MemoryBlock M2 = Memory::allocateMappedMemory(64, nullptr, Flags, EC); in TEST_P() local
81 EXPECT_NE((void*)nullptr, M2.base()); in TEST_P()
82 EXPECT_LE(64U, M2.size()); in TEST_P()
86 EXPECT_FALSE(doesOverlap(M1, M2)); in TEST_P()
87 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DMemoryTest.cpp45 bool doesOverlap(MemoryBlock M1, MemoryBlock M2) { in doesOverlap() argument
46 if (M1.base() == M2.base()) in doesOverlap()
49 if (M1.base() > M2.base()) in doesOverlap()
50 return (unsigned char *)M2.base() + M2.size() > M1.base(); in doesOverlap()
52 return (unsigned char *)M1.base() + M1.size() > M2.base(); in doesOverlap()
74 MemoryBlock M2 = Memory::allocateMappedMemory(64, nullptr, Flags, EC); in TEST_P() local
81 EXPECT_NE((void*)nullptr, M2.base()); in TEST_P()
82 EXPECT_LE(64U, M2.size()); in TEST_P()
86 EXPECT_FALSE(doesOverlap(M1, M2)); in TEST_P()
87 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
[all …]
/external/llvm/test/CodeGen/Mips/llvm-ir/
Dselect-flt.ll2 ; RUN: -check-prefixes=ALL,M2,M2-M3
14 ; RUN: -check-prefixes=ALL,M3,M2-M3
36 ; M2-M3: andi $[[T0:[0-9]+]], $4, 1
37 ; M2-M3: bnez $[[T0]], $[[BB0:BB[0-9_]+]]
38 ; M2-M3: nop
39 ; M2: jr $ra
40 ; M2: mtc1 $6, $f0
42 ; M2-M3: $[[BB0]]:
43 ; M2-M3: jr $ra
44 ; M2: mtc1 $5, $f0
[all …]
Dselect-dbl.ll2 ; RUN: -check-prefixes=ALL,M2,M2-M3
14 ; RUN: -check-prefixes=ALL,M3,M2-M3
36 ; M2: andi $[[T0:[0-9]+]], $4, 1
37 ; M2: bnez $[[T0]], $[[BB0:BB[0-9_]+]]
38 ; M2: nop
39 ; M2: ldc1 $f0, 16($sp)
40 ; M2: jr $ra
41 ; M2: nop
42 ; M2: $[[BB0]]:
43 ; M2: mtc1 $7, $f0
[all …]
Dselect-int.ll2 ; RUN: -check-prefixes=ALL,M2,M2-M3
14 ; RUN: -check-prefixes=ALL,M3,M2-M3
37 ; M2-M3: andi $[[T0:[0-9]+]], $4, 1
38 ; M2-M3: bnez $[[T0]], $[[BB0:BB[0-9_]+]]
39 ; M2-M3: nop
40 ; M2-M3: move $5, $6
41 ; M2-M3: $[[BB0]]:
42 ; M2-M3: jr $ra
43 ; M2-M3: move $2, $5
72 ; M2-M3: andi $[[T0:[0-9]+]], $4, 1
[all …]
Dmul.ll2 ; RUN: FileCheck %s -check-prefixes=ALL,M2,GP32
36 ; M2: mult $4, $5
37 ; M2: mflo $[[T0:[0-9]+]]
38 ; M2: sll $[[T0]], $[[T0]], 31
39 ; M2: sra $2, $[[T0]], 31
74 ; M2: mult $4, $5
75 ; M2: mflo $[[T0:[0-9]+]]
76 ; M2: sll $[[T0]], $[[T0]], 24
77 ; M2: sra $2, $[[T0]], 24
115 ; M2: mult $4, $5
[all …]
Dlshr.ll2 ; RUN: -check-prefixes=ALL,GP32,M2
82 ; M2: srlv $[[T0:[0-9]+]], $4, $7
83 ; M2: andi $[[T1:[0-9]+]], $7, 32
84 ; M2: bnez $[[T1]], $[[BB0:BB[0-9_]+]]
85 ; M2: move $3, $[[T0]]
86 ; M2: srlv $[[T2:[0-9]+]], $5, $7
87 ; M2: not $[[T3:[0-9]+]], $7
88 ; M2: sll $[[T4:[0-9]+]], $4, 1
89 ; M2: sllv $[[T5:[0-9]+]], $[[T4]], $[[T3]]
90 ; M2: or $3, $[[T3]], $[[T2]]
[all …]
/external/golang-protobuf/protoc-gen-go/testdata/import_public/sub/
Db.pb.go23 type M2 struct { struct
30 func (m *M2) Reset() { *m = M2{} } argument
31 func (m *M2) String() string { return proto.CompactTextString(m) } argument
32 func (*M2) ProtoMessage() {} argument
33 func (*M2) Descriptor() ([]byte, []int) { argument
41 func (*M2) ExtensionRangeArray() []proto.ExtensionRange {
45 func (m *M2) XXX_Unmarshal(b []byte) error {
48 func (m *M2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
51 func (m *M2) XXX_Merge(src proto.Message) {
54 func (m *M2) XXX_Size() int {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/llvm-ir/
Dselect-int.ll2 ; RUN: -check-prefixes=ALL,M2,M2-M3
14 ; RUN: -check-prefixes=ALL,M3,M2-M3
37 ; M2-M3: andi $[[T0:[0-9]+]], $4, 1
38 ; M2: bnez $[[T0]], [[BB0:\$BB[0-9_]+]]
40 ; M2-M3: nop
41 ; M2-M3: move $5, $6
42 ; M2-M3: [[BB0]]:
43 ; M2-M3: jr $ra
44 ; M2-M3: move $2, $5
73 ; M2-M3: andi $[[T0:[0-9]+]], $4, 1
[all …]
Dselect-flt.ll3 ; RUN: -check-prefixes=M2
34 ; M2-LABEL: tst_select_i1_float:
35 ; M2: # %bb.0: # %entry
36 ; M2-NEXT: andi $1, $4, 1
37 ; M2-NEXT: bnez $1, $BB0_2
38 ; M2-NEXT: nop
39 ; M2-NEXT: # %bb.1: # %entry
40 ; M2-NEXT: jr $ra
41 ; M2-NEXT: mtc1 $6, $f0
42 ; M2-NEXT: $BB0_2:
[all …]
Dselect-dbl.ll3 ; RUN: -check-prefix=M2
35 ; M2-LABEL: tst_select_i1_double:
36 ; M2: # %bb.0: # %entry
37 ; M2-NEXT: andi $1, $4, 1
38 ; M2-NEXT: bnez $1, $BB0_2
39 ; M2-NEXT: nop
40 ; M2-NEXT: # %bb.1: # %entry
41 ; M2-NEXT: ldc1 $f0, 16($sp)
42 ; M2-NEXT: jr $ra
43 ; M2-NEXT: nop
[all …]
Dmul.ll2 ; RUN: FileCheck %s -check-prefixes=ALL,M2,GP32
34 ; M2: mult $4, $5
35 ; M2: mflo $[[T0:[0-9]+]]
36 ; M2: andi $[[T0]], $[[T0]], 1
37 ; M2: negu $2, $[[T0]]
73 ; M2: mult $4, $5
74 ; M2: mflo $[[T0:[0-9]+]]
75 ; M2: sll $[[T0]], $[[T0]], 24
76 ; M2: sra $2, $[[T0]], 24
114 ; M2: mult $4, $5
[all …]
/external/golang-protobuf/protoc-gen-go/testdata/imports/test_b_1/
Dm2.pb.go23 type M2 struct { struct
29 func (m *M2) Reset() { *m = M2{} } argument
30 func (m *M2) String() string { return proto.CompactTextString(m) } argument
31 func (*M2) ProtoMessage() {} argument
32 func (*M2) Descriptor() ([]byte, []int) { argument
36 func (m *M2) XXX_Unmarshal(b []byte) error { argument
39 func (m *M2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
42 func (m *M2) XXX_Merge(src proto.Message) { argument
45 func (m *M2) XXX_Size() int { argument
48 func (m *M2) XXX_DiscardUnknown() { argument
[all …]
/external/golang-protobuf/protoc-gen-go/testdata/imports/test_a_1/
Dm2.pb.go23 type M2 struct { struct
29 func (m *M2) Reset() { *m = M2{} } argument
30 func (m *M2) String() string { return proto.CompactTextString(m) } argument
31 func (*M2) ProtoMessage() {} argument
32 func (*M2) Descriptor() ([]byte, []int) { argument
36 func (m *M2) XXX_Unmarshal(b []byte) error { argument
39 func (m *M2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
42 func (m *M2) XXX_Merge(src proto.Message) { argument
45 func (m *M2) XXX_Size() int { argument
48 func (m *M2) XXX_DiscardUnknown() { argument
[all …]
/external/clang/test/Driver/Inputs/
Dgen-response.c3 #define M2 M1 M1 M1 M1 M1 M1 M1 M1 M1 M1 macro
4 #define M3 M2 M2 M2 M2 M2 M2 M2 M2 M2 M2
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
DMultiJITTest.cpp51 void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) { in createModule2() argument
52 M2 = new Module("test2", Context2); in createModule2()
53 LoadAssemblyInto(M2, in createModule2()
65 FooF2 = M2->getFunction("foo2"); in createModule2()
78 Module *M2 = 0; in TEST() local
80 createModule2(Context2, M2, FooF2); in TEST()
85 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create()); in TEST()
108 Module *M2 = 0; in TEST() local
110 createModule2(Context2, M2, FooF2); in TEST()
115 OwningPtr<ExecutionEngine> EE2(EngineBuilder(M2).create()); in TEST()
[all …]
/external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
Dis_equal.pass.cpp49 memory_resource const& M2 = R2; in main() local
51 assert(M1.is_equal(M2) == false); in main()
55 assert(M2.is_equal(M1) == false); in main()
66 memory_resource const& M2 = R2; in main() local
68 assert(M1.is_equal(M2) == false); in main()
72 assert(M2.is_equal(M1) == false); in main()
83 memory_resource const& M2 = R2; in main() local
85 assert(M1.is_equal(M2) == true); in main()
89 assert(M2.is_equal(M1) == true); in main()
/external/eigen/test/
Dcommainitializer.cpp13 template<int M1, int M2, int N1, int N2>
16 Matrix<int, M1+M2, N1+N2> m_fixed; in test_blocks()
17 MatrixXi m_dynamic(M1+M2, N1+N2); in test_blocks()
21 Matrix<int, M2, N1> mat21; mat21.setRandom(); in test_blocks()
22 Matrix<int, M2, N2> mat22; mat22.setRandom(); in test_blocks()
30 VERIFY_IS_EQUAL((m_fixed.template bottomLeftCorner<M2,N1>()), mat21); in test_blocks()
31 VERIFY_IS_EQUAL((m_fixed.template bottomRightCorner<M2,N2>()), mat22); in test_blocks()
45 if(M1 != M2) in test_blocks()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DMeasureMapInternalTest.java66 .put(M2, 66.6) in testCombination()
73 MeasurementDouble.create(M2, 66.6), in testCombination()
104 MeasureMapInternal.builder().put(M1, 1.0).put(M2, 2.0).put(M1, 3.0).build(), in testDuplicateMeasureDoubles()
106 MeasurementDouble.create(M2, 2.0)); in testDuplicateMeasureDoubles()
108 MeasureMapInternal.builder().put(M1, 1.0).put(M1, 2.0).put(M2, 2.0).build(), in testDuplicateMeasureDoubles()
110 MeasurementDouble.create(M2, 2.0)); in testDuplicateMeasureDoubles()
138 MeasureMapInternal.builder().put(M2, 2.0).put(M3, 100L).put(M2, 3.0).build(), in testDuplicateMeasures()
139 MeasurementDouble.create(M2, 3.0), in testDuplicateMeasures()
144 private static final MeasureDouble M2 = makeSimpleMeasureDouble("m2"); field in MeasureMapInternalTest
/external/clang/test/Preprocessor/
Dbigoutput.c9 #define M2 M0 M0 M0 M0 macro
10 #define M4 M2 M2 M2 M2

12345678910>>...18