Searched refs:std (Results 76 - 100 of 1914) sorted by relevance

1234567891011>>

/gem5/src/mem/ruby/network/simple/
H A DSimpleLink.hh48 void print(std::ostream& out) const;
53 inline std::ostream&
54 operator<<(std::ostream& out, const SimpleExtLink& obj)
57 out << std::flush;
69 void print(std::ostream& out) const;
74 inline std::ostream&
75 operator<<(std::ostream& out, const SimpleIntLink& obj)
78 out << std::flush;
/gem5/src/systemc/dt/
H A Dsc_mempool.cc37 sc_mempool::allocate(std::size_t sz)
42 sc_mempool::release(void *p, std::size_t sz)
/gem5/src/systemc/tests/systemc/kernel/kind_string/test01/
H A Dfoo.cpp45 if( std::string(sig_.kind()) == std::string(sig.kind()) ) {
/gem5/src/systemc/tests/systemc/kernel/sc_module/test06/
H A Dtest06.cpp39 // test of the sc_module::sc_module(const std::string&)
47 mod_a(const std::string &m) : sc_module(m)
56 const std::string nm = "module_a";
/gem5/src/cpu/testers/traffic_gen/
H A Dtraffic_gen.hh77 const std::string configFile;
93 std::string resolveFile(const std::string &name);
114 std::vector<std::vector<double> > transitionMatrix;
120 std::unordered_map<uint32_t, std::shared_ptr<BaseGen>> states;
123 std::shared_ptr<BaseGen> nextGenerator() override;
/gem5/src/gpu-compute/
H A Dscoreboard_check_stage.hh73 const std::string& name() const { return _name; }
87 std::vector<bool> *vectorAluInstAvail;
95 std::vector<std::vector<Wavefront*>*> readyList;
100 std::vector<std::vector<std::pair<Wavefront*, WAVE_STATUS>>*>
103 std::string _name;
/gem5/src/mem/cache/replacement_policies/
H A Drandom_rp.cc45 RandomRP::invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
49 std::static_pointer_cast<RandomReplData>(
54 RandomRP::touch(const std::shared_ptr<ReplacementData>& replacement_data) const
59 RandomRP::reset(const std::shared_ptr<ReplacementData>& replacement_data) const
62 std::static_pointer_cast<RandomReplData>(
79 if (!std::static_pointer_cast<RandomReplData>(
89 std::shared_ptr<ReplacementData>
92 return std::shared_ptr<ReplacementData>(new RandomReplData());
H A Dbrrip_rp.cc48 BRRIPRP::invalidate(const std::shared_ptr<ReplacementData>& replacement_data)
51 std::shared_ptr<BRRIPReplData> casted_replacement_data =
52 std::static_pointer_cast<BRRIPReplData>(replacement_data);
59 BRRIPRP::touch(const std::shared_ptr<ReplacementData>& replacement_data) const
61 std::shared_ptr<BRRIPReplData> casted_replacement_data =
62 std::static_pointer_cast<BRRIPReplData>(replacement_data);
75 BRRIPRP::reset(const std::shared_ptr<ReplacementData>& replacement_data) const
77 std::shared_ptr<BRRIPReplData> casted_replacement_data =
78 std::static_pointer_cast<BRRIPReplData>(replacement_data);
102 int victim_RRPV = std
[all...]
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-string.h108 static std::string ShowWideCString(const wchar_t* wide_c_str);
145 const std::string& str, const std::string& suffix);
148 static std::string FormatIntWidth2(int value); // "%02d" for width == 2
151 static std::string FormatHexInt(int value);
154 static std::string FormatByte(unsigned char value);
160 // Gets the content of the stringstream's buffer as an std::string. Each '\0'
162 GTEST_API_ std::string StringStreamToString(::std::stringstream* stream);
/gem5/ext/googletest/googletest/test/
H A Dgtest-typed-test2_test.cc43 testing::Types<std::vector<int> >);
/gem5/src/mem/cache/compressors/
H A Dbase.hh65 const std::size_t blkSize;
91 virtual std::unique_ptr<CompressionData> compress(
127 Cycles& decomp_lat, std::size_t& comp_size_bits);
151 static void setSizeBits(CacheBlk* blk, const std::size_t size_bits);
164 std::size_t _size;
182 void setSizeBits(std::size_t size);
189 std::size_t getSizeBits() const;
196 std::size_t getSize() const;
/gem5/src/base/stats/
H A Dinfo.hh75 std::string name;
77 static std::string separatorString;
79 std::string desc;
101 void setName(const std::string &name);
102 void setName(const Group *parent, const std::string &name);
103 void setSeparator(std::string _sep) { separatorString = _sep;}
162 std::vector<std::string> subnames;
163 std::vector<std
[all...]
/gem5/src/kern/linux/
H A Dprintk.hh39 void Printk(std::stringstream &out, Arguments args);
/gem5/src/arch/power/insts/
H A Dcondition.cc35 std::string
38 std::stringstream ss;
48 std::string
51 std::stringstream ss;
/gem5/src/base/
H A Dbarrier.hh49 std::mutex bMutex;
51 std::condition_variable bCond;
67 std::unique_lock<std::mutex> lock(bMutex);
H A Dimgwriter.cc51 std::unique_ptr<ImgWriter>
65 return std::unique_ptr<PngWriter>(new PngWriter(fb));
68 return std::unique_ptr<BmpWriter>(new BmpWriter(fb));
71 return std::unique_ptr<BmpWriter>(new BmpWriter(fb));
/gem5/src/mem/ruby/network/
H A DBasicRouter.hh48 void print(std::ostream& out) const;
57 inline std::ostream&
58 operator<<(std::ostream& out, const BasicRouter& obj)
61 out << std::flush;
/gem5/src/systemc/core/
H A Dobject.hh44 typedef std::vector<sc_core::sc_object *> Objects;
45 typedef std::vector<sc_core::sc_event *> Events;
65 void print(std::ostream & =std::cout) const;
66 void dump(std::ostream & =std::cout) const;
68 const std::vector<sc_core::sc_object *> &get_child_objects() const;
69 const std::vector<sc_core::sc_event *> &get_child_events() const;
73 sc_core::sc_attr_base *get_attribute(const std::string &);
74 sc_core::sc_attr_base *remove_attribute(const std
[all...]
/gem5/util/systemc/gem5_within_systemc/
H A Dstats.hh53 extern std::string filename;
/gem5/src/python/
H A Dmarshal.cc52 std::cerr << "Usage: marshal PYSOURCE\n" << std::endl;
65 auto marshalled = locals["marshalled"].cast<std::string>();
66 std::cout << marshalled;
/gem5/src/dev/arm/
H A Dsmmu_v3_events.cc50 const std::string
/gem5/src/mem/ruby/common/
H A DWriteMask.cc36 WriteMask::print(std::ostream& out) const
38 std::string str(mSize,'0');
44 << std::flush;
/gem5/src/sim/
H A Dmathexpr.hh51 MathExpr(std::string expr);
53 typedef std::function<double(std::string)> EvalCallback;
60 std::string toStr() const { return toStr(root, ""); }
88 std::array<OpSearch, uNeg + 1> ops;
93 std::string toStr() const {
101 return std::to_string(value);
103 return std::string(1, opStr[op]);
110 std::string variable;
117 Node *parse(std
[all...]
/gem5/src/mem/ruby/network/garnet2.0/
H A DNetworkInterface.hh67 void addNode(std::vector<MessageBuffer *> &inNode,
68 std::vector<MessageBuffer *> &outNode);
70 void print(std::ostream& out) const;
82 std::vector<OutVcState *> m_out_vc_state;
83 std::vector<int> m_vc_allocator;
95 std::deque<flit *> m_stall_queue;
96 std::vector<int> m_stall_count;
100 std::vector<flitBuffer *> m_ni_out_vcs;
101 std::vector<Cycles> m_ni_out_vcs_enqueue_time;
104 std
[all...]
/gem5/src/systemc/tests/systemc/bugs/instantiation_detection/
H A Dinstantiation_detection.cpp48 std::cout << "\n" << x.what() << std::endl;
74 std::cout << "\n" << x.what() << std::endl;
80 std::cout << "\n" << x.what() << std::endl;
87 std:: cout << "\n---8<--- start_of_simulation ---8<---\n";
89 std:: cout << "\n--->8--- start_of_simulation --->8---\n";
93 std:: cout << "\n---8<--- end_of_elaboration ---8<---\n";
95 std
[all...]

Completed in 20 milliseconds

1234567891011>>