Searched refs:std (Results 601 - 625 of 1914) sorted by relevance

<<21222324252627282930>>

/gem5/src/systemc/core/
H A Dchannel.hh58 extern std::set<Channel *> allChannels;
/gem5/src/systemc/ext/dt/fx/
H A Dscfx_string.hh49 // Added std:: prefix to appropriate methods and types to get around
78 void resize(std::size_t);
101 std::size_t m_len;
102 std::size_t m_alloc;
110 scfx_string::resize(std::size_t i)
/gem5/src/systemc/tests/include/
H A DSimpleATInitiator1.h149 std::cout << name() << ": Send write request: A = 0x"
150 << std::hex << (unsigned int)trans.get_address()
151 << ", D = 0x" << trans.getData() << std::dec
152 << " @ " << sc_core::sc_time_stamp() << std::endl;
155 std::cout << name() << ": Send read request: A = 0x"
156 << std::hex << (int)trans.get_address() << std::dec
157 << " @ " << sc_core::sc_time_stamp() << std::endl;
164 std::cout << name() << ": Received error response @ "
165 << sc_core::sc_time_stamp() << std
[all...]
H A DSimpleATInitiator2.h145 std::cout << name() << ": Send write request: A = 0x"
146 << std::hex << (unsigned int)trans.get_address()
147 << ", D = 0x" << trans.getData() << std::dec
148 << " @ " << sc_core::sc_time_stamp() << std::endl;
151 std::cout << name() << ": Send read request: A = 0x"
152 << std::hex << (unsigned int)trans.get_address() << std::dec
153 << " @ " << sc_core::sc_time_stamp() << std::endl;
160 std::cout << name() << ": Received error response @ "
161 << sc_core::sc_time_stamp() << std
[all...]
/gem5/src/arch/power/insts/
H A Dmisc.hh52 std::string generateDisassembly(
/gem5/src/arch/sparc/insts/
H A Dpriv.hh49 std::string generateDisassembly(
70 std::string generateDisassembly(
80 std::string generateDisassembly(
109 std::string generateDisassembly(
/gem5/src/cpu/o3/probe/
H A Dsimple_trace.hh66 const std::string name() const { return ProbeListenerObject::name() + ".trace"; }
/gem5/src/cpu/testers/traffic_gen/
H A Dpygen.hh60 std::shared_ptr<BaseGen> nextGenerator() override;
H A Dstream_gen.cc59 RandomStreamGen::randomPick(const std::vector<uint32_t> &svec)
/gem5/src/dev/ps2/
H A Ddevice.cc60 std::vector<uint8_t> buffer(outBuffer.size());
61 std::copy(outBuffer.begin(), outBuffer.end(), buffer.begin());
70 std::vector<uint8_t> buffer;
79 PS2Device::hostRegDataAvailable(const std::function<void()> &c)
H A Dkeyboard.hh68 bool recv(const std::vector<uint8_t> &data) override;
/gem5/src/gpu-compute/
H A Drr_scheduling_policy.hh54 __chooseWave(std::vector<Wavefront*> *sched_list)
H A Dscheduler.cc61 Scheduler::bindList(std::vector<Wavefront*> *sched_list)
H A Dsimple_pool_manager.cc52 std::string
55 std::string _cout;
60 _cout = "VRF reserves " + std::to_string(reservedEntries) + " VGPRs\n";
100 SimplePoolManager::regionSize(std::pair<uint32_t, uint32_t> &region)
/gem5/src/mem/cache/tags/indexing_policies/
H A Dset_associative.hh118 std::vector<ReplaceableEntry*> getPossibleEntries(const Addr addr) const
/gem5/src/mem/cache/
H A Dwrite_queue.hh70 WriteQueue(const std::string &_label, int num_entries, int reserve);
/gem5/tests/test-progs/pthread/src/
H A Dtest_atomic.cpp55 std::atomic<int>* shared_var;
63 std::atomic<int>* shared_var = my_args->shared_var;
66 std::atomic_fetch_add(shared_var, 1);
80 std::atomic<int> shared_var(0);
/gem5/ext/googletest/googlemock/test/
H A Dgmock_ex_test.cc74 } catch (const std::exception& ex) {
/gem5/ext/googletest/googletest/test/
H A Dgtest_list_tests_unittest_.cc81 explicit MyType(const std::string& a_value) : value_(a_value) {}
83 const std::string& value() const { return value_; }
86 std::string value_;
90 void PrintTo(const MyType& x, std::ostream* os) {
H A Dgtest_throw_on_failure_test_.cc55 std::set_terminate(&TerminateHandler);
/gem5/src/arch/arm/tracers/
H A Dtarmac_record.cc50 std::string
65 std::string
237 regName = "f" + std::to_string(regRelIdx);
255 std::string reg_suffix;
275 regName = "r" + std::to_string(regRelIdx);
282 TarmacTracerRecord::addInstEntry(std::vector<InstPtr>& queue,
293 TarmacTracerRecord::addMemEntry(std::vector<MemPtr>& queue,
309 TarmacTracerRecord::addRegEntry(std::vector<RegPtr>& queue,
385 std::ostream &outs = Trace::output();
404 std
[all...]
/gem5/src/arch/generic/
H A Dvec_pred_reg.hh79 using Container = typename std::conditional<
95 typename std::enable_if<Condition, void>::type
100 typename std::enable_if<Condition, void>::type
104 typename std::enable_if<Condition, MyClass&>::type
118 typename std::enable_if<Condition, bool&>::type
135 typename std::enable_if<Condition, void>::type
158 friend std::ostream&
159 operator<<(std::ostream& os, const MyClass& p)
171 const std::string print() const { return csprintf("%s", *this); }
242 using Container = std
[all...]
/gem5/src/base/
H A Dinifile.test.cc44 using namespace std;
48 std::istringstream iniFile(R"ini_file(
75 std::string value;
103 std::string value;
/gem5/src/cpu/o3/
H A Dinst_queue.hh96 typedef typename std::list<DynInstPtr>::iterator ListIt;
132 std::string name() const;
141 void setActiveThreads(std::list<ThreadID> *at_ptr);
316 std::list<DynInstPtr> instList[Impl::MaxThreads];
319 std::list<DynInstPtr> instsToExecute;
324 std::list<DynInstPtr> deferredMemInsts;
327 std::list<DynInstPtr> blockedMemInsts;
332 std::list<DynInstPtr> retryMemInsts;
348 typedef std::priority_queue<DynInstPtr, std
[all...]
/gem5/src/mem/cache/prefetch/
H A Dslim_ampm.hh62 std::vector<AddrPriority> &addresses) override;

Completed in 24 milliseconds

<<21222324252627282930>>