Searched refs:rep (Results 1 - 10 of 10) sorted by relevance

/gem5/ext/systemc/src/sysc/utils/
H A Dsc_string.cpp139 sc_string_old::sc_string_old( int size ) : rep( new sc_string_rep(size) )
143 sc_string_old::sc_string_old( const char* s ) : rep( new sc_string_rep(s) )
148 rep( new sc_string_rep( s, n ) )
152 sc_string_old::sc_string_old( const sc_string_old& s ) : rep( s.rep )
154 rep->ref_count ++;
157 sc_string_old::sc_string_old( sc_string_rep* r ) : rep(r)
166 if( -- (rep->ref_count) == 0 ) {
167 delete rep;
175 return strlen(rep
[all...]
H A Dsc_report_handler.cpp48 const std::string sc_report_compose_message(const sc_report& rep) argument
55 str += severity_names[rep.get_severity()];
58 if ( rep.get_id() >= 0 ) // backward compatibility with 2.0+
62 "IWEF"[rep.get_severity()], rep.get_id());
65 str += rep.get_msg_type();
67 if( *rep.get_msg() )
70 str += rep.get_msg();
72 if( rep.get_severity() > SC_INFO )
76 str += rep
120 default_handler(const sc_report& rep, const sc_actions& actions) argument
629 cache_report(const sc_report& rep) argument
[all...]
H A Dsc_report.cpp185 sc_report rep(severity_, md, msg_, file_, line_);
188 cache_report(rep);
195 handler(rep, actions);
H A Dsc_string.h220 sc_string_rep* rep; member in class:sc_dt::sc_string_old
/gem5/src/systemc/tests/systemc/utils/sc_report/test05/
H A Dcatch_actions.cpp42 void custom_handler(const sc_report& rep, const sc_actions& actions) argument
48 << sc_core::sc_report_compose_message(rep)
53 if (rep.get_severity() == SC_ERROR) {
65 sc_report_handler::default_handler(rep, actions & ~SC_DISPLAY);
/gem5/ext/pybind11/include/pybind11/
H A Dchrono.h35 typedef typename type::rep rep; typedef in class:duration_caster
49 value = type(duration_cast<duration<rep, period>>(
57 value = type(duration_cast<duration<rep, period>>(duration<double>(PyFloat_AsDouble(src.ptr()))));
64 static const std::chrono::duration<rep, period>& get_duration(const std::chrono::duration<rep, period> &src) {
69 template <typename Clock> static std::chrono::duration<rep, period> get_duration(const std::chrono::time_point<Clock, std::chrono::duration<rep, period>> &src) {
/gem5/ext/ply/ply/
H A Dcpp.py421 rep = [copy.copy(_x) for _x in macro.value]
429 rep[i] = copy.copy(rep[i])
430 rep[i].value = str_expansion[argnum]
436 rep[i] = None
447 rep[i:i+1] = args[argnum]
452 rep[i:i+1] = expanded[argnum]
456 rep = [_i for _i in rep if _i]
458 return rep
[all...]
/gem5/src/systemc/utils/
H A Dvcd.cc117 printVal(std::ostream &os, const std::string &rep) argument
123 os << rep << vcdName() << std::endl;;
126 os << "b" << stripLeadingBits(rep.c_str()) << " " <<
/gem5/src/arch/x86/
H A Ddecoder.cc213 DPRINTF(Decoder, "Found rep prefix.\n");
214 emi.legacy.rep = true;
262 emi.legacy.rep = 1;
342 emi.legacy.rep = 1;
H A Dtypes.hh78 Bitfield<6> rep; member in namespace:X86ISA

Completed in 19 milliseconds