Searched refs:eq (Results 1 - 24 of 24) sorted by relevance

/gem5/src/sim/
H A Dlinear_solver.hh57 eq = std::vector <double> (unknowns + 1, 0);
62 assert(this->eq.size() == rhs.eq.size());
64 LinearEquation res(this->eq.size() - 1);
66 for (unsigned i = 0; i < res.eq.size(); i++)
67 res.eq[i] = this->eq[i] + rhs.eq[i];
74 for (auto & c: eq)
82 assert(unkw < eq
[all...]
H A Dinit_signals.cc149 const EventQueue *const eq(curEventQueue());
150 if (eq) {
151 ccprintf(cerr, "Program aborted at tick %llu\n", eq->getCurTick());
H A Deventq.hh594 : eq(*_eq)
596 eq.unlock();
601 eq.lock();
605 EventQueue &eq; member in class:EventQueue::ScopedRelease
735 EventManager(EventQueue *eq) : eventq(eq) {} argument
/gem5/src/sim/power/
H A Dthermal_model.cc115 LinearEquation eq(nnodes);
118 return eq;
121 eq[eq.cnt()] += -node1->temp / _resistance;
123 eq[node1->id] += -1.0f / _resistance;
126 eq[eq.cnt()] += node2->temp / _resistance;
128 eq[node2->id] += 1.0f / _resistance;
132 eq *= -1.0f;
134 return eq;
229 LinearEquation eq = e->getEquation(n, eq_nodes.size(), _step); local
[all...]
H A Dthermal_domain.cc115 LinearEquation eq(n);
118 eq[eq.cnt()] = power;
119 return eq;
/gem5/configs/boot/
H A Dhack_back_ckpt.rcS39 if [ "$RUNSCRIPT_VAR" -eq 1 ]
H A Dnetperf-maerts-client.rcS38 [ "$NUMCLNTS" -eq "0" ] && NUMCLNTS=1
/gem5/ext/googletest/googletest/xcode/Samples/FrameworkSample/
H A Druntests.sh48 if [ $result -eq 0 ]; then
/gem5/src/systemc/tests/systemc/compliance_1666/test207/
H A Dtest207.cpp38 sc_event_queue eq; member in struct:Top
44 std::string s = eq.basename();
49 s = eq.name();
54 sc_assert (std::string(eq.kind()) == "sc_event_queue");
/gem5/ext/googletest/googletest/xcode/Scripts/
H A Druntests.sh51 if [ $result -eq 0 ]; then
/gem5/util/
H A Dtracediff79 if (@ARGV >= 1 && $ARGV[0] eq '-n') {
92 if ($subarg eq '') {
H A Drundiff237 if ($lines1[$n1] eq $lines2[$n2] && $lines1[$n1+1] eq $lines2[$n2+1]) {
273 # $lines1[0] eq $lines2[0].
291 if ($l1 eq $l2) {
/gem5/src/python/pybind11/
H A Devent.cc119 .def("name", [](EventQueue *eq) { return eq->name(); })
121 .def("schedule", [](EventQueue *eq, PyEvent *e, Tick t) {
122 eq->schedule(e, t);
/gem5/src/systemc/core/
H A Dscheduler.hh227 void setEventQueue(EventQueue *_eq) { eq = _eq; }
230 Tick getCurTick() { return eq ? eq->getCurTick() : 0; }
390 EventQueue *eq; member in class:sc_gem5::Scheduler
397 eq->schedule(event, tick);
408 eq->deschedule(event);
H A Dscheduler.cc49 eq(nullptr), readyEvent(this, false, ReadyPriority),
132 eq->schedule(ets.first, ets.second);
/gem5/src/arch/power/
H A Dmiscregs.hh50 Bitfield<29> eq; member in namespace:PowerISA
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64ud/
H A Dfcmp.S7 # Test f{eq|lt|le}.d instructions.
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64uf/
H A Dfcmp.S7 # Test f{eq|lt|le}.s instructions.
/gem5/src/systemc/tests/systemc/compliance_1666/test228/
H A Dtest228.cpp101 sc_event_queue eq; local
/gem5/tests/
H A Ddiff-out236 if ($ignore{$stat} or $refvalue eq $newvalue) {
240 if ($refvalue eq $divbyzero || $newvalue eq $divbyzero) {
/gem5/system/arm/aarch64_bootloader/
H A Dboot.S153 b.eq 2f // secondary CPU
/gem5/ext/pybind11/include/pybind11/
H A Doperators.h130 PYBIND11_BINARY_OPERATOR(eq, eq, operator==, l == r)
/gem5/src/base/
H A Dremote_gdb.cc762 EventQueue *eq = getComInstEventQueue(tc); local
765 eq->schedule(ev, eq->getCurTick() + delta);
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h1153 const bool eq = case_sensitive_ ? s2 == string_ : local
1155 return expect_eq_ == eq;

Completed in 47 milliseconds