Searched refs:T2 (Results 26 - 50 of 53) sorted by relevance

123

/gem5/src/systemc/tests/systemc/1666-2011-compliance/odds_and_ends/
H A Dodds_and_ends.cpp47 SC_THREAD(T2);
110 void T2() function
115 cout << "T2 at " << sc_time_stamp() << endl;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_process_handle_less_than/
H A Dsc_process_handle_less_than.cpp47 SC_THREAD(T2);
154 void T2() function in struct:Top
163 cout << "T2 completed" << endl;
/gem5/src/systemc/tests/systemc/compliance_1666/test233/
H A Dtest233.cpp48 SC_THREAD(T2);
51 sc_assert(strcmp(h.name(), "top.m.T2") == 0);
99 void T2 () function
103 sc_assert(strcmp(h.name(), "top.m.T2") == 0);
/gem5/src/arch/arm/insts/
H A Dcrypto.cc283 uint32_t T0, T1, T2, T3; local
287 T2 = Y[3] + sigma1(Y[0]) + T0 + Z[i];
288 X[3] = T2 + X[3];
289 Y[3] = T2 + sigma0(X[0]) + T1;
304 uint32_t T1, T2; local
315 T2 = Y[0];
317 X[3] = X[2]; X[2] = X[1]; X[1] = X[0]; X[0] = T2;
375 uint32_t T0[4], T1[4], T2[4], T3[4]; local
385 T2[1] = ror(T1[1], 17) ^ ror(T1[1], 19) ^ (T1[1] >> 10);
386 T2[
[all...]
H A Dfplib.hh96 template <class T1, class T2>
97 T2 fplibConvert(T1 op, FPRounding rounding, FPSCR &fpscr);
165 template <class T1, class T2>
166 T2 fplibFPToFixed(T1 op, int fbits, bool u, FPRounding rounding, FPSCR &fpscr);
/gem5/ext/pybind11/include/pybind11/
H A Dstl_bind.h23 template <typename T2> static std::true_type test_comparable(decltype(std::declval<const T2 &>() == std::declval<const T2 &>())*);
24 template <typename T2> static std::false_type test_comparable(...);
25 template <typename T2> static std::true_type test_value(typename T2::value_type *);
26 template <typename T2> static std::false_type test_value(...);
27 template <typename T2> static std::true_type test_pair(typename T2::first_type *, typename T2
[all...]
H A Dcast.h786 template <typename T1, typename T2> struct is_copy_constructible<std::pair<T1, T2>>
787 : all_of<is_copy_constructible<T1>, is_copy_constructible<T2>> {};
1423 template <typename T1, typename T2> class type_caster<std::pair<T1, T2>>
1424 : public tuple_caster<std::pair, T1, T2> {};
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test6/
H A Dtest6.cpp150 triga T2("T2", clock2, sig4);
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test7/
H A Dtest7.cpp152 triga T2("T2", clock2, sig4);
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test8/
H A Dtest8.cpp163 triga T2("T2", clock2, sig4);
/gem5/src/systemc/tests/systemc/1666-2011-compliance/event_list/
H A Devent_list.cpp49 SC_THREAD(T2);
61 void T2() function in struct:Mod
66 cout << "M::T2 awoke with " << p[0]->read() << p[1]->read() << p[2]->read()
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_writer_policy/
H A Dsc_writer_policy.cpp152 SC_THREAD(T2);
218 void T2() function in struct:Top
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc898 template <typename T1, typename T2>
902 ConcatImplActionP3<std::string, T1, T2>
903 Concat(const std::string& a, T1 b, T2 c) {
914 return ConcatImpl<std::string, T1, T2>(a, b, c);
920 template <typename T1, typename T2>
921 ConcatImplActionP3<T1, int, T2>
922 Concat(T1 a, int b, T2 c) {
1139 template <typename T1, typename T2, typename T3, int k4, bool k5,
1150 typename, T2,
1160 return GiantTemplate<T10<T1>, T2, T
[all...]
H A Dgmock-generated-matchers_test.cc1264 template <typename T1, typename T2>
1265 bool AllOf(const T1& t1, const T2& t2) { return true; }
1272 template <typename T1, typename T2> bool
1273 AnyOf(const T1& t1, const T2& t2) { return true; }
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-actions.h757 template <typename T1, typename T2>
760 AssignAction(T1* ptr, T2 value) : ptr_(ptr), value_(value) {}
769 const T2 value_;
1146 template <typename T1, typename T2>
1147 PolymorphicAction<internal::AssignAction<T1, T2> > Assign(T1* ptr, T2 val) {
1148 return MakePolymorphicAction(internal::AssignAction<T1, T2>(ptr, val));
H A Dgmock-matchers.h1383 template <typename T1, typename T2>
1384 operator Matcher< ::testing::tuple<T1, T2> >() const {
1385 return MakeMatcher(new Impl< ::testing::tuple<T1, T2> >);
1387 template <typename T1, typename T2>
1388 operator Matcher<const ::testing::tuple<T1, T2>&>() const {
1389 return MakeMatcher(new Impl<const ::testing::tuple<T1, T2>&>);
2690 // T2&> >, where T1 and T2 are the types of elements in the LHS
4182 // T1&, const T2&> >, where T1 and T2 ar
[all...]
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_vector/
H A Dsc_vector.cpp328 SC_THREAD(T2);
344 void T2() function in struct:Top
/gem5/ext/googletest/googletest/test/
H A Dgtest-param-test_test.cc96 template <typename T1, typename T2>
97 ::std::string PrintValue(const tuple<T1, T2>& value) {
103 template <typename T1, typename T2, typename T3>
104 ::std::string PrintValue(const tuple<T1, T2, T3>& value) {
111 template <typename T1, typename T2, typename T3, typename T4, typename T5,
114 const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) {
H A Dgtest-typed-test_test.cc361 template <typename T1, typename T2> struct MyPair {};
H A Dgtest_unittest.cc2357 template <typename T1, typename T2>
2358 bool GreaterThan(T1 x1, T2 x2) {
2399 template <typename T1, typename T2>
2401 const T1& x1, const T2& x2) {
7397 template <typename T1, typename T2>
7399 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_(T2)>();
7423 template <typename T1, typename T2>
7425 CompileAssertTypesEqual<T1, GTEST_REMOVE_CONST_(T2)>();
7436 template <typename T1, typename T2>
7438 CompileAssertTypesEqual<T1, GTEST_REMOVE_REFERENCE_AND_CONST_(T2)>();
[all...]
/gem5/src/systemc/tests/systemc/compliance_1666/test00/
H A Dtest00.cpp293 SC_THREAD(T2);
315 void T2() function
/gem5/ext/pybind11/tests/
H A Dtest_numpy_array.cpp117 template <typename T, typename T2> py::handle auxiliaries(T &&r, T2 &&r2) {
/gem5/ext/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h343 // type_equals<T1, T2>::value is non-zero iff T1 and T2 are the same type.
344 template <typename T1, typename T2> struct type_equals : public false_type {};
/gem5/src/systemc/tests/systemc/1666-2011-compliance/async_reset/
H A Dasync_reset.cpp72 SC_THREAD(T2)
474 void T2() function in struct:Top
476 //cout << "T2() called at " << sc_time_stamp() << endl;
497 //cout << "T2() awoke at " << sc_time_stamp() << endl;
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h769 // Defining a variable of type CompileAssertTypesEqual<T1, T2> will cause a
770 // compiler error iff T1 and T2 are different types.
771 template <typename T1, typename T2>

Completed in 110 milliseconds

123