Home
last modified time | relevance | path

Searched refs:M3 (Results 1 – 25 of 259) sorted by relevance

1234567891011

/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DMeasureMapInternalTest.java45 MeasureMapInternal metrics = MeasureMapInternal.builder().put(M3, 9999L).put(M4, 8888L).build(); in testPutLong()
46 assertContains(metrics, MeasurementLong.create(M3, 9999L), MeasurementLong.create(M4, 8888L)); in testPutLong()
67 .put(M3, 9999L) in testCombination()
74 MeasurementLong.create(M3, 9999L), in testCombination()
116 MeasureMapInternal.builder().put(M3, 100L).put(M3, 100L).build(), in testDuplicateMeasureLongs()
117 MeasurementLong.create(M3, 100L)); in testDuplicateMeasureLongs()
119 MeasureMapInternal.builder().put(M3, 100L).put(M3, 200L).put(M3, 300L).build(), in testDuplicateMeasureLongs()
120 MeasurementLong.create(M3, 300L)); in testDuplicateMeasureLongs()
122 MeasureMapInternal.builder().put(M3, 100L).put(M4, 200L).put(M3, 300L).build(), in testDuplicateMeasureLongs()
123 MeasurementLong.create(M3, 300L), in testDuplicateMeasureLongs()
[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
41 ; M3: mov.s $f13, $f14
42 ; M2-M3: $[[BB0]]:
43 ; M2-M3: jr $ra
45 ; M3: mov.s $f0, $f13
78 ; M2-M3: andi $[[T0:[0-9]+]], $6, 1
[all …]
Dselect-dbl.ll2 ; RUN: -check-prefixes=ALL,M2,M2-M3
14 ; RUN: -check-prefixes=ALL,M3,M2-M3
60 ; M3: andi $[[T0:[0-9]+]], $4, 1
61 ; M3: bnez $[[T0]], $[[BB0:BB[0-9_]+]]
62 ; M3: nop
63 ; M3: mov.d $f13, $f14
64 ; M3: $[[BB0]]:
65 ; M3: jr $ra
66 ; M3: mov.d $f0, $f13
108 ; M3: andi $[[T0:[0-9]+]], $6, 1
[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 …]
/external/golang-protobuf/protoc-gen-go/testdata/imports/test_a_2/
Dm3.pb.go23 type M3 struct { struct
29 func (m *M3) Reset() { *m = M3{} } argument
30 func (m *M3) String() string { return proto.CompactTextString(m) } argument
31 func (*M3) ProtoMessage() {} argument
32 func (*M3) Descriptor() ([]byte, []int) { argument
36 func (m *M3) XXX_Unmarshal(b []byte) error { argument
39 func (m *M3) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
42 func (m *M3) XXX_Merge(src proto.Message) { argument
45 func (m *M3) XXX_Size() int { argument
48 func (m *M3) XXX_DiscardUnknown() { argument
[all …]
/external/llvm-project/clang/test/Driver/Inputs/
Dgen-response.c4 #define M3 M2 M2 M2 M2 M2 M2 M2 M2 M2 M2 macro
5 #define M4 M3 M3 M3 M3 M3 M3 M3 M3 M3 M3
/external/clang/test/Driver/Inputs/
Dgen-response.c4 #define M3 M2 M2 M2 M2 M2 M2 M2 M2 M2 M2 macro
5 #define M4 M3 M3 M3 M3 M3 M3 M3 M3 M3 M3
/external/llvm/unittests/Support/
DMemoryTest.cpp76 MemoryBlock M3 = Memory::allocateMappedMemory(32, nullptr, Flags, EC); in TEST_P() local
83 EXPECT_NE((void*)nullptr, M3.base()); in TEST_P()
84 EXPECT_LE(32U, M3.size()); in TEST_P()
87 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
88 EXPECT_FALSE(doesOverlap(M1, M3)); in TEST_P()
91 EXPECT_FALSE(Memory::releaseMappedMemory(M3)); in TEST_P()
132 MemoryBlock M3 = Memory::allocateMappedMemory(4 * sizeof(int), nullptr, Flags, in TEST_P() local
137 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
138 EXPECT_FALSE(doesOverlap(M1, M3)); in TEST_P()
144 EXPECT_NE((void*)nullptr, M3.base()); in TEST_P()
[all …]
/external/llvm-project/llvm/unittests/Support/
DMemoryTest.cpp131 MemoryBlock M3 = Memory::allocateMappedMemory(32, nullptr, Flags, EC); in TEST_P() local
138 EXPECT_NE((void*)nullptr, M3.base()); in TEST_P()
139 EXPECT_LE(32U, M3.allocatedSize()); in TEST_P()
142 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
143 EXPECT_FALSE(doesOverlap(M1, M3)); in TEST_P()
146 EXPECT_FALSE(Memory::releaseMappedMemory(M3)); in TEST_P()
190 MemoryBlock M3 = Memory::allocateMappedMemory(4 * sizeof(int), nullptr, Flags, in TEST_P() local
195 EXPECT_FALSE(doesOverlap(M2, M3)); in TEST_P()
196 EXPECT_FALSE(doesOverlap(M1, M3)); in TEST_P()
202 EXPECT_NE((void*)nullptr, M3.base()); in TEST_P()
[all …]
/external/llvm-project/llvm/test/tools/llvm-mca/AArch64/Exynos/
Dfloat-store.s2 … -mcpu=exynos-m3 -resource-pressure=false -noalias=false < %s | FileCheck %s -check-prefixes=ALL,M3
42 # M3-NEXT: Total Cycles: 3203
43 # M3-NEXT: Total uOps: 2900
53 # M3-NEXT: uOps Per Cycle: 0.91
54 # M3-NEXT: IPC: 0.69
55 # M3-NEXT: Block RThroughput: 22.0
75 # M3-NEXT: 1 1 1.00 * stur d0, [sp, #2]
76 # M3-NEXT: 1 1 1.00 * stur q0, [sp, #16]
77 # M3-NEXT: 1 1 1.00 * str b0, [sp], #1
78 # M3-NEXT: 1 1 1.00 * str q0, [sp], #16
[all …]
Dfloat-load.s2 … -march=aarch64 -mcpu=exynos-m3 -resource-pressure=false < %s | FileCheck %s -check-prefixes=ALL,M3
47 # M3-NEXT: Total Cycles: 4708
48 # M3-NEXT: Total uOps: 3200
58 # M3-NEXT: uOps Per Cycle: 0.68
59 # M3-NEXT: IPC: 0.51
60 # M3-NEXT: Block RThroughput: 13.5
80 # M3-NEXT: 1 5 0.50 * ldr s0, {{\.?}}Ltmp0
81 # M3-NEXT: 1 5 0.50 * ldr q0, {{\.?}}Ltmp0
82 # M3-NEXT: 1 5 0.50 * ldur d0, [sp, #2]
83 # M3-NEXT: 1 5 0.50 * ldur q0, [sp, #16]
[all …]
Dasimd-ld1.s2 …rch64-linux-gnu -mcpu=exynos-m3 -resource-pressure=false < %s | FileCheck %s -check-prefixes=ALL,M3
51 # M3-NEXT: Total Cycles: 14903
59 # M3-NEXT: uOps Per Cycle: 0.68
60 # M3-NEXT: IPC: 0.24
80 # M3-NEXT: 2 7 1.00 * ld1 { v0.s }[0], [sp]
81 # M3-NEXT: 1 5 0.50 * ld1r { v0.2s }, [sp]
82 # M3-NEXT: 1 5 0.50 * ld1 { v0.2s }, [sp]
83 # M3-NEXT: 2 5 1.00 * ld1 { v0.2s, v1.2s }, [sp]
84 # M3-NEXT: 3 6 1.50 * ld1 { v0.2s, v1.2s, v2.2s }, [sp]
85 # M3-NEXT: 4 6 2.00 * ld1 { v0.2s, v1.2s, v2.2s, v3.2s }, [sp]
[all …]
Dasimd-st1.s2 … -mcpu=exynos-m3 -resource-pressure=false -noalias=false < %s | FileCheck %s -check-prefixes=ALL,M3
45 # M3-NEXT: Total Cycles: 10203
46 # M3-NEXT: Total uOps: 8400
56 # M3-NEXT: uOps Per Cycle: 0.82
57 # M3-NEXT: IPC: 0.29
58 # M3-NEXT: Block RThroughput: 72.0
78 # M3-NEXT: 4 7 3.00 * st1 { v0.s }[0], [sp]
79 # M3-NEXT: 1 1 1.00 * st1 { v0.2s }, [sp]
80 # M3-NEXT: 2 2 2.00 * st1 { v0.2s, v1.2s }, [sp]
81 # M3-NEXT: 3 3 3.00 * st1 { v0.2s, v1.2s, v2.2s }, [sp]
[all …]
Dasimd-ld2.s2 …rch64-linux-gnu -mcpu=exynos-m3 -resource-pressure=false < %s | FileCheck %s -check-prefixes=ALL,M3
33 # M3-NEXT: Total Cycles: 10003
41 # M3-NEXT: uOps Per Cycle: 0.54
42 # M3-NEXT: IPC: 0.18
43 # M3-NEXT: Block RThroughput: 42.0
63 # M3-NEXT: 3 7 1.00 * ld2 { v0.s, v1.s }[0], [sp]
64 # M3-NEXT: 2 5 1.00 * ld2r { v0.2s, v1.2s }, [sp]
65 # M3-NEXT: 2 10 5.00 * ld2 { v0.2s, v1.2s }, [sp]
66 # M3-NEXT: 3 6 1.00 * ld2 { v0.d, v1.d }[0], [sp]
67 # M3-NEXT: 2 5 1.00 * ld2r { v0.2d, v1.2d }, [sp]
[all …]
Dstore.s2 … -mcpu=exynos-m3 -resource-pressure=false -noalias=false < %s | FileCheck %s -check-prefixes=ALL,M3
22 # M3-NEXT: Total uOps: 1300
28 # M3-NEXT: uOps Per Cycle: 1.00
34 # M3-NEXT: Block RThroughput: 11.0
48 # M3-NEXT: 1 1 1.00 * stur x0, [sp, #8]
49 # M3-NEXT: 1 1 1.00 * strb w0, [sp], #1
50 # M3-NEXT: 1 1 1.00 * strh w0, [sp, #2]!
51 # M3-NEXT: 1 1 1.00 * str x0, [sp, #8]
52 # M3-NEXT: 1 1 1.00 * strb w0, [sp, xzr]
53 # M3-NEXT: 1 1 1.00 * strh w0, [sp, xzr, lsl #1]
[all …]
Dasimd-st2.s2 … -mcpu=exynos-m3 -resource-pressure=false -noalias=false < %s | FileCheck %s -check-prefixes=ALL,M3
27 # M3-NEXT: Total Cycles: 8703
28 # M3-NEXT: Total uOps: 5400
38 # M3-NEXT: uOps Per Cycle: 0.62
39 # M3-NEXT: IPC: 0.14
40 # M3-NEXT: Block RThroughput: 40.5
60 # M3-NEXT: 4 7 3.00 * st2 { v0.s, v1.s }[0], [sp]
61 # M3-NEXT: 4 7 3.00 * st2 { v0.2s, v1.2s }, [sp]
62 # M3-NEXT: 4 7 3.00 * st2 { v0.d, v1.d }[0], [sp]
63 # M3-NEXT: 6 8 4.50 * st2 { v0.2d, v1.2d }, [sp]
[all …]
Dasimd-ld3.s2 …rch64-linux-gnu -mcpu=exynos-m3 -resource-pressure=false < %s | FileCheck %s -check-prefixes=ALL,M3
33 # M3-NEXT: Total Cycles: 12501
41 # M3-NEXT: uOps Per Cycle: 0.60
42 # M3-NEXT: IPC: 0.14
43 # M3-NEXT: Block RThroughput: 84.0
63 # M3-NEXT: 4 7 1.00 * ld3 { v0.s, v1.s, v2.s }[0], [sp]
64 # M3-NEXT: 3 6 1.50 * ld3r { v0.2s, v1.2s, v2.2s }, [sp]
65 # M3-NEXT: 3 12 9.00 * ld3 { v0.2s, v1.2s, v2.2s }, [sp]
66 # M3-NEXT: 5 6 6.00 * ld3 { v0.d, v1.d, v2.d }[0], [sp]
67 # M3-NEXT: 3 6 1.50 * ld3r { v0.2d, v1.2d, v2.2d }, [sp]
[all …]
Dasimd-st3.s2 … -mcpu=exynos-m3 -resource-pressure=false -noalias=false < %s | FileCheck %s -check-prefixes=ALL,M3
27 # M3-NEXT: Total Cycles: 18003
28 # M3-NEXT: Total uOps: 8400
38 # M3-NEXT: uOps Per Cycle: 0.47
39 # M3-NEXT: IPC: 0.07
40 # M3-NEXT: Block RThroughput: 72.0
60 # M3-NEXT: 5 14 4.50 * st3 { v0.s, v1.s, v2.s }[0], [sp]
61 # M3-NEXT: 7 15 6.00 * st3 { v0.2s, v1.2s, v2.2s }, [sp]
62 # M3-NEXT: 7 15 6.00 * st3 { v0.d, v1.d, v2.d }[0], [sp]
63 # M3-NEXT: 9 16 7.50 * st3 { v0.2d, v1.2d, v2.2d }, [sp]
[all …]
Dasimd-ld4.s2 …rch64-linux-gnu -mcpu=exynos-m3 -resource-pressure=false < %s | FileCheck %s -check-prefixes=ALL,M3
33 # M3-NEXT: Total Cycles: 15598
41 # M3-NEXT: uOps Per Cycle: 0.60
42 # M3-NEXT: IPC: 0.12
43 # M3-NEXT: Block RThroughput: 108.0
63 # M3-NEXT: 5 9 2.00 * ld4 { v0.s, v1.s, v2.s, v3.s }[0], [sp]
64 # M3-NEXT: 4 6 2.00 * ld4r { v0.2s, v1.2s, v2.2s, v3.2s }, [sp]
65 # M3-NEXT: 4 14 12.00 * ld4 { v0.2s, v1.2s, v2.2s, v3.2s }, [sp]
66 # M3-NEXT: 6 7 6.00 * ld4 { v0.d, v1.d, v2.d, v3.d }[0], [sp]
67 # M3-NEXT: 4 6 2.00 * ld4r { v0.2d, v1.2d, v2.2d, v3.2d }, [sp]
[all …]
Dasimd-st4.s2 … -mcpu=exynos-m3 -resource-pressure=false -noalias=false < %s | FileCheck %s -check-prefixes=ALL,M3
27 # M3-NEXT: Total Cycles: 18603
28 # M3-NEXT: Total uOps: 9000
38 # M3-NEXT: uOps Per Cycle: 0.48
39 # M3-NEXT: IPC: 0.06
40 # M3-NEXT: Block RThroughput: 76.5
60 # M3-NEXT: 7 15 6.00 * st4 { v0.s, v1.s, v2.s, v3.s }[0], [sp]
61 # M3-NEXT: 7 15 6.00 * st4 { v0.2s, v1.2s, v2.2s, v3.2s }, [sp]
62 # M3-NEXT: 7 15 6.00 * st4 { v0.d, v1.d, v2.d, v3.d }[0], [sp]
63 # M3-NEXT: 9 17 7.50 * st4 { v0.2d, v1.2d, v2.2d, v3.2d }, [sp]
[all …]
Dcrc.s2 … -march=aarch64 -mcpu=exynos-m3 -resource-pressure=false < %s | FileCheck %s -check-prefixes=ALL,M3
15 # M3-NEXT: Total Cycles: 204
23 # M3-NEXT: uOps Per Cycle: 1.96
24 # M3-NEXT: IPC: 1.96
25 # M3-NEXT: Block RThroughput: 2.0
45 # M3-NEXT: 1 2 0.50 crc32w w0, w1, w2
46 # M3-NEXT: 1 2 0.50 crc32w w0, w0, w3
47 # M3-NEXT: 1 2 0.50 crc32cx w0, w1, x2
48 # M3-NEXT: 1 2 0.50 crc32cx w0, w0, x3
/external/llvm-project/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
39 ; M3: bnez $[[T0]], [[BB0:\.LBB[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.ll15 ; RUN: -check-prefixes=M3
70 ; M3-LABEL: tst_select_i1_float:
71 ; M3: # %bb.0: # %entry
72 ; M3-NEXT: andi $1, $4, 1
73 ; M3-NEXT: bnez $1, .LBB0_2
74 ; M3-NEXT: mov.s $f0, $f13
75 ; M3-NEXT: # %bb.1: # %entry
76 ; M3-NEXT: mov.s $f0, $f14
77 ; M3-NEXT: .LBB0_2: # %entry
78 ; M3-NEXT: jr $ra
[all …]
Dselect-dbl.ll15 ; RUN: -check-prefix=M3
76 ; M3-LABEL: tst_select_i1_double:
77 ; M3: # %bb.0: # %entry
78 ; M3-NEXT: andi $1, $4, 1
79 ; M3-NEXT: bnez $1, .LBB0_2
80 ; M3-NEXT: mov.d $f0, $f13
81 ; M3-NEXT: # %bb.1: # %entry
82 ; M3-NEXT: mov.d $f0, $f14
83 ; M3-NEXT: .LBB0_2: # %entry
84 ; M3-NEXT: jr $ra
[all …]
/external/eigen/doc/snippets/
DTutorial_SlicingCol.cpp7 RowMajorMatrixXf M3(M1);
8 cout << "Row major input:" << endl << M3 << "\n";
9 Map<RowMajorMatrixXf,0,Stride<Dynamic,3> > M4(M3.data(), M3.rows(), (M3.cols()+2)/3,
10 Stride<Dynamic,3>(M3.outerStride(),3));

1234567891011