Searched refs:m2 (Results 26 - 34 of 34) sorted by relevance

12

/gem5/ext/pybind11/tests/
H A Dtest_constants_and_functions.cpp62 int m2(int x) const noexcept { return x-2; }
115 .def("m2", &C::m2)
H A Dtest_copy_move.cpp120 MoveOnlyInt m2(py::cast<MoveOnlyInt>(o)); /* moves */
122 r += m1.value + m2.value + m3.value;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/method_with_reset/
H A Dmethod_with_reset.cpp59 m2 = sc_get_current_process_handle();
69 sc_process_handle m1, m2, m3, m4, m5, m6; member in struct:Top
175 m2.disable();
258 m2.reset();
362 or_list |= m2.reset_event();
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-generated-function-mockers.h112 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2) { argument
113 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2));
133 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, argument
135 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3));
155 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, argument
157 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4));
178 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, argument
180 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5));
201 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, argument
204 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m
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.h997 // AllOf(m1, m2, ..., mk) matches any value that matches all of the given
1002 AllOf(M1 m1, M2 m2) { argument
1005 m2);
1010 AllOf(M1 m1, M2 m2, M3 m3) { argument
1013 ::testing::AllOf(m2, m3));
1018 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) { argument
1020 ::testing::AllOf(m1, m2),
1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { argument
1028 ::testing::AllOf(m1, m2),
1035 AllOf(M1 m1, M2 m2, M argument
1044 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) argument
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
1085 AnyOf(M1 m1, M2 m2) 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...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc777 const Matcher<int> m2 = EqSumOf(5, 9); local
778 EXPECT_EQ("equals the sum of 5 and 9", Describe(m2));
779 EXPECT_EQ("doesn't equal the sum of 5 and 9", DescribeNegation(m2));
788 const Matcher<int> m2 = EqSumOf(1, 2); local
789 EXPECT_EQ("OK", Explain(m2, 3));
790 EXPECT_EQ("diff == -1", Explain(m2, 4));
810 const Matcher<const ::std::string&> m2 = IsEmptyStringByRef(); local
811 EXPECT_TRUE(m2.Matches(""));
1098 MATCHER_P3(TwoOf, m1, m2, m3, "") {
1100 + static_cast<int>(Value(arg, m2))
1182 Matcher<vector<int> > m2 = Not(m); local
[all...]
H A Dgmock_link_test.h610 Matcher<const FieldHelper*> m2 = Field(&FieldHelper::field_, Eq(0)); local
611 EXPECT_TRUE(m2.Matches(&helper));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0)); local
622 EXPECT_TRUE(m2.Matches(&helper));
/gem5/src/systemc/tests/systemc/compliance_1666/test210/
H A Dtest210.cpp76 M m2("m2");
81 sc_assert(strcmp(tops[1]->name(), "m2") == 0);
88 sc_assert(strcmp(tops[1]->name(), "m2") == 0);
102 obj = sc_find_object("m2");
/gem5/ext/mcpat/cacti/
H A Dcacti_interface.h542 static bool lt(const mem_array * m1, const mem_array * m2);

Completed in 27 milliseconds

12