Searched refs:m3 (Results 1 - 10 of 10) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_buffers.py17 m3 = np.array([[1, 2, 3], [4, 5, 6]]).astype(np.float32)
18 m4 = m.Matrix(m3)
22 assert m3[i, j] == m4[i, j]
26 del m3, m4
H A Dtest_constants_and_functions.py29 assert c.m3(5) == 2
H A Dtest_constants_and_functions.cpp63 int m3(int x) noexcept(true) { return x-3; }
116 .def("m3", &C::m3)
H A Dtest_copy_move.cpp121 CopyOnlyInt m3(py::cast<CopyOnlyInt>(o)); /* copies */
122 r += m1.value + m2.value + m3.value;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_vector/
H A Dsc_vector.cpp301 M *m1, *m2, *m3; member in struct:Top
311 m3 = new M("m3", 4);
320 it = m3->ports.bind( hi_sigs.begin(), hi_sigs.end() );
321 sc_assert( (it - m3->ports.begin()) == 2 );
324 it = m3->ports.bind( lo_sigs.begin(), lo_sigs.end(), it);
325 sc_assert( (it - m3->ports.begin()) == 4 );
375 sc_assert( top.m3->creator_func_called );
/gem5/src/systemc/tests/systemc/1666-2011-compliance/method_with_reset/
H A Dmethod_with_reset.cpp69 sc_process_handle m1, m2, m3, m4, m5, m6; member in struct:Top
182 m3 = sc_spawn(sc_bind( &Top::spawned_method, this ), "m3", &opt3);
186 opt4.set_sensitivity( &m3.reset_event() );
222 m3.reset();
250 m3.kill();
354 event_list = m3.reset_event() | m3.terminated_event();
363 or_list |= m3.reset_event();
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc561 Matcher<IntValue> m3 = Truly(IsPositiveIntValue); local
562 Matcher<int> m4 = MatcherCast<int>(m3);
691 Matcher<char> m3 = SafeMatcherCast<char>(TypedEq<int>('a')); local
692 EXPECT_TRUE(m3.Matches('a'));
693 EXPECT_FALSE(m3.Matches('b'));
705 Matcher<Base&> m3 = Ref(d); local
706 Matcher<Derived&> m4 = SafeMatcherCast<Derived&>(m3);
1024 Matcher<void*> m3 = IsNull(); local
1026 EXPECT_TRUE(m3.Matches(p3));
1027 EXPECT_FALSE(m3
1192 Matcher<string> m3 = StrEq(str); local
1240 Matcher<const string&> m3 = StrCaseEq(str1); local
1360 Matcher<pair<const char*, int> > m3 = Pair("foo", 42); local
1558 Matcher<const ::std::wstring&> m3 = StrEq(L"\\xD3\\x576\\x8D3\\xC74D"); local
1633 Matcher<const ::std::wstring&> m3 = StrCaseEq(str1); local
1749 Matcher<const ::wstring&> m3 = StrEq(L"\\xD3\\x576\\x8D3\\xC74D"); local
1824 Matcher<const ::wstring&> m3 = StrCaseEq(str1); local
2042 Matcher<int&> m3 = Not(m); local
2193 Matcher<int&> m3 = AllOf(greater_than_5, m2); local
2378 Matcher<int&> m3 = AnyOf(greater_than_5, m2); local
2746 Matcher<RawType> m3 = matcher_maker(1.0); local
2843 Matcher<RawType> m3 = matcher_maker(ParentType::infinity_, 0.0); local
2935 Matcher<float> m3 = FloatEq(nan1_); local
2949 Matcher<float> m3 = NanSensitiveFloatEq(nan1_); local
2977 Matcher<float> m3 = FloatNear(nan1_, 0.0); local
2993 Matcher<float> m3 = NanSensitiveFloatNear(nan1_, 0.1f); local
3050 Matcher<double> m3 = DoubleEq(nan1_); local
3064 Matcher<double> m3 = NanSensitiveDoubleEq(nan1_); local
3092 Matcher<double> m3 = DoubleNear(nan1_, 0.0); local
3121 Matcher<double> m3 = NanSensitiveDoubleNear(nan1_, 0.1); local
4146 Matcher<vector<int> > m3 = SizeIs(AnyOf(0, 3)); local
4613 Matcher<vector<int> > m3 = BeginEndDistanceIs(AnyOf(0, 3)); local
[all...]
H A Dgmock-generated-matchers_test.cc1098 MATCHER_P3(TwoOf, m1, m2, m3, "") {
1100 + static_cast<int>(Value(arg, m2)) + static_cast<int>(Value(arg, m3));
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-generated-function-mockers.h134 const Matcher<A3>& m3) {
135 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3));
156 const Matcher<A3>& m3, const Matcher<A4>& m4) {
157 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4));
179 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) {
180 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5));
202 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
204 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
227 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
229 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m
133 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3) argument
155 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4) argument
178 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) argument
201 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6) argument
226 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7) argument
251 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8) argument
276 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9) argument
303 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9, const Matcher<A10>& m10) argument
[all...]
H A Dgmock-generated-matchers.h1010 AllOf(M1 m1, M2 m2, M3 m3) { argument
1013 ::testing::AllOf(m2, m3));
1018 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { argument
1021 ::testing::AllOf(m3, m4));
1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { argument
1029 ::testing::AllOf(m3, m4, m5));
1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { argument
1037 ::testing::AllOf(m1, m2, m3),
1044 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { argument
1046 ::testing::AllOf(m1, m2, m3),
1053 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) argument
1062 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) argument
1073 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
1093 AnyOf(M1 m1, M2 m2, M3 m3) argument
1101 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4) argument
1109 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) argument
1118 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) argument
1127 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) argument
1136 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) argument
1145 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) argument
1156 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
[all...]

Completed in 29 milliseconds