Searched refs:to_string (Results 151 - 175 of 205) sorted by relevance

123456789

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbutils.h120 const std::string to_string( sc_numrep );
126 os << to_string( numrep );
151 to_string( base ).c_str() );
H A Dsc_unsigned.cpp596 sc_unsigned::to_string( sc_numrep numrep ) const function in class:sc_dt::sc_unsigned
600 return aa.to_string( numrep );
604 sc_unsigned::to_string( sc_numrep numrep, bool w_prefix ) const function in class:sc_dt::sc_unsigned
608 return aa.to_string( numrep, w_prefix );
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h719 throw std::domain_error("array has incorrect number of dimensions: " + std::to_string(ndim()) +
720 "; expected " + std::to_string(Dims));
733 throw std::domain_error("array has incorrect number of dimensions: " + std::to_string(ndim()) +
734 "; expected " + std::to_string(Dims));
772 throw index_error(msg + ": " + std::to_string(dim) +
773 " (ndim = " + std::to_string(ndim()) + ")");
813 throw index_error(std::string("index ") + std::to_string(i) +
814 " is out of bounds for axis " + std::to_string(axis) +
815 " with size " + std::to_string(*shape));
956 static std::string format() { return std::to_string(
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_methods_and_attributes.cpp28 return "ExampleMandA[value=" + std::to_string(value) + "]";
368 return a.arg + "\n" + b.arg + "\n" + std::to_string(c) + "\n" + d->arg;
422 return "StrIssue[" + std::to_string(si.val) + "]"; }
H A Dtest_factory_constructors.cpp20 TestFactory1(int v) : value(std::to_string(v)) { print_created(this, value); }
34 TestFactory2(int v) : value(std::to_string(v)) { print_created(this, value); }
47 TestFactory3(int v) : value(std::to_string(v)) { print_created(this, value); }
/gem5/ext/dsent/libutil/
H A DString.h119 String ret = String(bitSet.to_string());
/gem5/src/dev/net/
H A Dtcp_iface.cc227 string port_str = to_string(serverPort);
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_bv_base.cpp385 return a.to_string( numrep, w_prefix );
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxtype_params.h107 const std::string to_string() const;
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_time.h105 const std::string to_string() const;
/gem5/src/systemc/ext/dt/fx/
H A Dsc_fxtype_params.hh104 const std::string to_string() const;
/gem5/src/arch/arm/insts/
H A Dsve.cc546 ss << std::to_string(imm);
832 return "VL" + std::to_string(imm);
839 return "VL" + std::to_string(1 << ((imm & 0x7) + 3));
847 return "#" + std::to_string(imm);
/gem5/src/cpu/minor/
H A Ddecode.cc76 name + ".inputBuffer" + std::to_string(tid), "insts",
H A Dfetch2.cc88 name + ".inputBuffer" + std::to_string(tid), "lines",
/gem5/src/mem/qos/
H A Dmem_sink.cc224 plist += (std::to_string(e->req->masterId())) + " ";
/gem5/src/python/pybind11/
H A Dcore.cc156 .def("__str__", &AddrRange::to_string)
/gem5/src/base/stats/
H A Dtext.cc329 print.name = base + (havesub ? subnames[0] : std::to_string(0));
345 print.name = base + (havesub ? subnames[i] : std::to_string(i));
400 (info.subnames[i].empty() ? (std::to_string(i)) : info.subnames[i]);
649 (havesub ? info.subnames[i] : std::to_string(i)));
/gem5/src/systemc/ext/dt/int/
H A Dsc_nbutils.hh108 const std::string to_string(sc_numrep);
113 os << to_string(numrep);
H A Dsc_signed.hh863 const std::string to_string(sc_numrep numrep=SC_DEC) const;
864 const std::string to_string(sc_numrep numrep, bool w_prefix) const;
890 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
1206 const std::string to_string(sc_numrep numrep=SC_DEC) const;
1207 const std::string to_string(sc_numrep numrep, bool w_prefix) const;
1214 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
H A Dsc_unsigned.hh773 const std::string to_string(sc_numrep numrep=SC_DEC) const;
774 const std::string to_string(sc_numrep numrep, bool w_prefix) const;
799 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
1112 const std::string to_string(sc_numrep numrep=SC_DEC) const;
1113 const std::string to_string(sc_numrep numrep, bool w_prefix) const;
1119 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_string.cpp375 sc_string_old sc_string_old::to_string(const char* format, ...) function in class:sc_dt::sc_string_old
/gem5/src/systemc/dt/int/
H A Dsc_unsigned.cc565 sc_unsigned::to_string(sc_numrep numrep) const function in class:sc_dt::sc_unsigned
569 return aa.to_string(numrep);
573 sc_unsigned::to_string(sc_numrep numrep, bool w_prefix) const function in class:sc_dt::sc_unsigned
577 return aa.to_string(numrep, w_prefix);
/gem5/src/systemc/tests/systemc/datatypes/fx/constructors/
H A Dassign.cpp56 #define SHOW_ASSIGN(a) cerr << #a << " : " << double(a) << " : " << a.to_string(SC_HEX) << "\n"
/gem5/src/systemc/tests/systemc/datatypes/fx/fast_constructors/
H A Dassign.cpp57 #define SHOW_ASSIGN(a) cerr << #a << " : " << double(a) << " : " << a.to_string(SC_HEX) << "\n"
/gem5/src/mem/ruby/system/
H A DRubyPort.cc577 DPRINTF(RubyPort, "%s\n", r.to_string());

Completed in 79 milliseconds

123456789