Searched refs:t1 (Results 51 - 75 of 76) sorted by relevance

1234

/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test12/
H A Dtest12.cpp74 sc_time t1(10, SC_NS);
77 wait(t1);
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test13/
H A Dtest13.cpp95 sc_time t1(10, SC_NS);
98 wait(t1, write_event);
/gem5/system/alpha/console/
H A Dpaljtoslave.S73 LDLI (t1,0x20000000)
77 bis t0, t1, t0
H A Dpaljtokern.S85 LDLI (t1,0x20000000)
89 bis t0, t1, t0
H A Ddbmentry.S199 mov a1, t1 # cpu rpb pointer (virtual)
205 zapnot t1,0x1f,a0 # make rpb physical
208 mov t1, a1
/gem5/tests/test-progs/asmtest/src/riscv/isa/macros/mt/
H A Dtest_macros_mt.h121 li t1, NUM_THREADS variable
124 bne t1, t2, 1b variable
H A Dtest_macros_mt_ecall.h168 mv t1, a0 variable
183 add a1, t1, s2 // pointer to the high address of the new stack variable
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_timeout/
H A Dproc_ctrl_timeout.cpp48 t1 = sc_get_current_process_handle();
70 sc_process_handle t1, t2, t3, t4, t5; member in struct:Top
85 t1.disable();
102 t1.kill();
/gem5/ext/pybind11/tests/
H A Dconstructor_stats.h170 const std::type_index *t1 = nullptr, *t2 = nullptr; local
175 if (t1) {
179 t1 = &p.first;
184 if (!t1) throw std::runtime_error("Unknown class passed to ConstructorStats::get()");
185 auto &cs1 = get(*t1);
186 // If we have both a t1 and t2 match, one is probably the trampoline class; return whichever
H A Dtest_callbacks.cpp31 auto t1 = py::make_tuple(2, 3);
33 return f("positional", 1, *t1, 4, *t2);
/gem5/tests/test-progs/asmtest/src/riscv/env/p/
H A Driscv_test.h163 csrr t1, medeleg; \
164 bne t0, t1, other_exception; \
/gem5/ext/ply/ply/
H A Dyacc.py401 t1 = targ[1]
402 sym.lineno = t1.lineno
403 sym.lexpos = t1.lexpos
404 t1 = targ[-1]
405 sym.endlineno = getattr(t1,"endlineno",t1.lineno)
406 sym.endlexpos = getattr(t1,"endlexpos",t1.lexpos)
690 t1 = targ[1]
691 sym.lineno = t1
[all...]
/gem5/src/systemc/core/
H A Dsc_time.cc280 operator / (const sc_time &t1, const sc_time &t2) argument
282 return t1.to_double() / t2.to_double();
/gem5/src/arch/arm/insts/
H A Dcrypto.cc229 uint8_t t1 = input[row0] ^ input[row1] ^ local
232 output[row1] = input[row1] ^ t1 ^ aesFFMul2(input[row1] ^ input[row2]);
233 output[row2] = input[row2] ^ t1 ^ aesFFMul2(input[row2] ^ input[row3]);
234 output[row3] = input[row3] ^ t1 ^ aesFFMul2(input[row3] ^ input[row0]);
235 output[row0] = input[row0] ^ t1 ^ aesFFMul2(input[row0] ^ input[row1]);
H A Dfplib.cc189 uint64_t t1 = (t0 >> 32) + (a >> 32) * b; local
190 *x0 = t1 << 32 | (uint32_t)t0;
191 *x1 = t1 >> 32;
1726 uint64_t t0, t1; local
1727 lsl128(&t0, &t1, y0_mnt, y1_mnt,
1730 y0_mnt |= !!(t0 | t1);
1733 uint64_t t0, t1; local
1734 lsl128(&t0, &t1, x0_mnt, x1_mnt,
1737 x0_mnt |= !!(t0 | t1);
2030 uint32_t x, t0, t1; local
2082 uint64_t t0, t1; local
[all...]
/gem5/system/alpha/h/
H A DfromHudsonOsf.h363 #define t1 $2 macro
/gem5/ext/googletest/googletest/test/
H A Dgtest-port_test.cc975 ThreadLocal<int> t1; local
976 EXPECT_EQ(0, t1.get());
983 ThreadLocal<int> t1(123);
984 EXPECT_EQ(123, t1.get());
H A Dgtest-printers_test.cc1004 ::std::tr1::tuple<int> t1(5);
1005 EXPECT_EQ("(5)", Print(t1));
1063 ::std::tuple<int> t1(5);
1064 EXPECT_EQ("(5)", Print(t1));
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_simcontext.cpp259 const sc_time& t1 = et1->notify_time(); local
262 if( t1 < t2 ) {
264 } else if( t1 > t2 ) {
/gem5/src/dev/net/
H A Di8254xGBe_defs.hh240 inline bool isTypes(TxDesc *d, uint8_t t1, uint8_t t2) { return isType(d, t1) || isType(d, t2); } argument
/gem5/tests/test-progs/asmtest/src/riscv/isa/macros/scalar/
H A Dtest_macros.h435 lw t1, 28(a0); \
440 bne t1, t2, fail; \
/gem5/ext/mcpat/
H A DxmlParser.cc115 inline int mmin( const int t1, const int t2 ) { argument
116 return t1 < t2 ? t1 : t2;
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-tuple.h947 // SameSizeTuplePrefixComparator<k, k>::Eq(t1, t2) returns true if the
948 // first k fields of t1 equals the first k fields of t2.
957 static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {
965 static bool Eq(const Tuple1& t1, const Tuple2& t2) {
966 return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&
967 ::std::tr1::get<k - 1>(t1) == ::std::tr1::get<k - 1>(t2);
/gem5/src/arch/arm/
H A Dmiscregs_types.hh231 Bitfield<1> t1; member in namespace:ArmISA
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc742 arg0_type t1 = arg0; local
744 return t1 + t2;

Completed in 94 milliseconds

1234