Searched refs:out (Results 251 - 275 of 320) sorted by relevance

<<111213

/gem5/ext/pybind11/tests/
H A Dconftest.py76 self.out = ""
84 self.out, self.err = self.capfd.readouterr()
87 a = Output(self.out)
96 return self.out
99 return item in self.out
103 return Unordered(self.out)
/gem5/ext/iostream3/
H A Dzfstream.cc58 if ((mode & std::ios_base::in) && (mode & std::ios_base::out))
86 if ((mode & std::ios_base::in) && (mode & std::ios_base::out))
136 bool testo = mode & std::ios_base::out;
234 if (!this->is_open() || !(io_mode & std::ios_base::out))
247 if (!this->is_open() || !(io_mode & std::ios_base::out))
456 if (!sb.open(name, mode | std::ios_base::out))
467 if (!sb.attach(fd, mode | std::ios_base::out))
/gem5/src/mem/ruby/system/
H A DGPUCoalescer.hh94 std::ostream& operator<<(std::ostream& out, const GPUCoalescerRequest& obj);
106 void printProgress(std::ostream& out) const;
180 void print(std::ostream& out) const;
347 operator<<(std::ostream& out, const GPUCoalescer& obj) argument
349 obj.print(out);
350 out << std::flush;
351 return out;
H A DCacheRecorder.cc39 TraceRecord::print(ostream& out) const
41 out << "[TraceRecord: Node, " << m_cntrl_id << ", "
/gem5/ext/dsent/model/optical/
H A DRingDetector.cc345 double out = step; local
349 double current = 0.5 * erfc(out / sqrt(2));
350 if (current > num_) out += step;
351 else out -= step;
355 return out;
/gem5/src/mem/ruby/common/
H A DNetDest.cc258 NetDest::print(std::ostream& out) const
260 out << "[NetDest (" << m_bits.size() << ") ";
264 out << (bool) m_bits[i].isElement(j) << " ";
266 out << " - ";
268 out << "]";
/gem5/src/systemc/core/
H A Dobject.cc172 Object::print(std::ostream &out) const
174 out << name();
178 Object::dump(std::ostream &out) const
180 out << "name = " << name() << "\n";
181 out << "kind = " << _sc_obj->kind() << "\n";
/gem5/src/mem/ruby/structures/
H A DCacheMemory.hh123 void print(std::ostream& out) const;
124 void printData(std::ostream& out) const;
190 std::ostream& operator<<(std::ostream& out, const CacheMemory& obj);
H A DTimerTable.cc95 TimerTable::print(std::ostream& out) const
H A DCacheMemory.cc45 operator<<(ostream& out, const CacheMemory& obj) argument
47 obj.print(out);
48 out << flush;
49 return out;
432 CacheMemory::print(ostream& out) const
434 out << "Cache dump: " << name() << endl;
438 out << " Index: " << i
442 out << " Index: " << i
451 CacheMemory::printData(ostream& out) const
453 out << "printDat
[all...]
H A DDirectoryMemory.cc139 DirectoryMemory::print(ostream& out) const
/gem5/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/
H A Dcycle_model.cpp1520 int in1, in2, out = 0; local
1536 out = in1 + in2;
1540 out = in1 - in2;
1544 out = in1+1;
1548 out = in1-1;
1552 out = in1 * in2;
1556 out = in1/in2;
1561 out = in1 & in2;
1565 out = in1 | in2;
1569 out
[all...]
/gem5/src/cpu/
H A Dprofile.hh79 void dump(ThreadContext *tc, std::ostream &out) const;
/gem5/src/cpu/minor/
H A Ddecode.hh71 Latch<ForwardInstData>::Input out; member in class:Minor::Decode
/gem5/ext/sst/
H A DExtMaster.hh77 Output& out; member in class:SST::gem5::ExtMaster
H A DExtSlave.hh89 Output &out; member in class:SST::gem5::ExtSlave
/gem5/ext/systemc/src/tlm_utils/
H A Dpeq_with_cb_and_phase.h175 return entries[out++];
179 return out<size;
184 out=0;
190 unsigned int out; member in class:tlm_utils::peq_with_cb_and_phase::delta_list
260 if (sc_core::sc_delta_count() & (sc_dt::uint64) 0x1) {//uneven delta so put out all payloads for uneven delta
/gem5/src/mem/ruby/network/garnet2.0/
H A DNetworkInterface.hh70 void print(std::ostream& out) const;
H A DOutputUnit.hh57 void print(std::ostream& out) const {};
H A DInputUnit.hh55 void print(std::ostream& out) const {};
/gem5/src/systemc/ext/tlm_utils/
H A Dpeq_with_cb_and_phase.h160 inline PAYLOAD &get() { return entries[out++]; }
161 inline bool next() { return out < size; }
166 out=0;
174 unsigned int out; member in class:tlm_utils::peq_with_cb_and_phase::delta_list
255 // Uneven delta so put out all payloads for uneven delta.
/gem5/ext/ply/example/BASIC/
H A Dbasinterp.py218 out = ""
220 if out:
221 out += ' '*(15 - (len(out) % 15))
222 out += label
224 if label: out += " "
226 out += str(eval)
227 sys.stdout.write(out)
231 if end == ',': sys.stdout.write(" "*(15-(len(out) % 15)))
232 if end == ';': sys.stdout.write(" "*(3-(len(out)
[all...]
/gem5/src/dev/virtio/
H A Dbase.hh501 Header out; local
503 out.flags = htov_legacy(header.flags);
504 out.index = htov_legacy(header.index);
505 _proxy.writeBlob(_base, &out, sizeof(out));
/gem5/src/mem/ruby/network/simple/
H A DSimpleNetwork.cc169 SimpleNetwork::print(ostream& out) const
171 out << "[SimpleNetwork]";
/gem5/src/cpu/testers/rubytest/
H A DCheckTable.cc133 CheckTable::print(std::ostream& out) const

Completed in 37 milliseconds

<<111213