Searched refs:os (Results 276 - 300 of 356) sorted by relevance

<<1112131415

/gem5/ext/ply/test/
H A Dtestyacc.py10 import os
45 os.remove("parsetab.py")
46 os.remove("parsetab.pyc")
/gem5/util/streamline/
H A Dm5stats2streamline.py62 import re, sys, os
581 ext = os.path.splitext(task_file)[1]
697 if not os.path.exists(output_path):
698 os.mkdir(output_path)
870 ext = os.path.splitext(gem5_stats_file)[1]
1123 if not os.path.exists(frame_path):
1127 file_list = os.listdir(frame_path)
1208 if not os.path.exists(input_path):
1232 if os.path.exists(input_path + "/stats.txt") and \
1233 os
[all...]
/gem5/src/python/m5/util/
H A Ddot_writer.py63 import m5, os, re
353 dot_filename = os.path.join(outdir, dotFilename)
373 dot_filename = os.path.join(outdir, dotFilename)
/gem5/src/cpu/minor/
H A Dfunc_unit.hh210 void reportData(std::ostream &os) const;
H A Dexecute.hh207 friend std::ostream &operator <<(std::ostream &os, DrainState state);
/gem5/src/dev/storage/
H A Dide_ctrl.hh117 void serialize(const std::string &base, std::ostream &os) const;
/gem5/ext/googletest/googletest/test/
H A Dgtest_catch_exceptions_test.py40 import os
H A Dgtest_shuffle_test.py35 import os
81 environ_copy = os.environ.copy()
/gem5/configs/example/arm/
H A Ddist_bigLITTLE.py45 import os
/gem5/tests/configs/
H A Dgpu-randomtest-ruby.py40 import os, optparse, sys
H A Dpc-simple-timing-ruby.py29 import m5, os, optparse, sys
/gem5/tests/gem5/
H A Dsuite.py29 import os
/gem5/src/arch/arm/
H A DArmSystem.py162 dtb_filename = os.path.join(outdir, filename)
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_time.cpp247 sc_time::print( ::std::ostream& os ) const
249 os << to_string();
/gem5/ext/mcpat/regression/
H A Dverify_output.py46 import os
177 if not os.path.exists(mcpat_output):
/gem5/configs/example/
H A Dse.py50 import os
94 process.cwd = os.getcwd()
/gem5/src/mem/cache/
H A Dmshr.hh288 void print(std::ostream &os, int verbosity,
524 void print(std::ostream &os,
/gem5/ext/testlib/
H A Dmain.py29 import os
307 os.path.join(config.config.result_path,
/gem5/src/cpu/
H A Dreg_class.hh214 operator<<(std::ostream& os, const RegId& rid) { argument
215 return os << rid.className() << "{" << rid.index() << "}";
/gem5/src/systemc/ext/dt/int/
H A Dsc_signed.hh748 void print(::std::ostream &os=::std::cout) const { os << to_bool(); }
888 print(::std::ostream &os=::std::cout) const
890 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
1212 print(::std::ostream &os=::std::cout) const
1214 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
2351 operator <<(::std::ostream &os, const sc_signed_bitref_r &a) argument
2425 operator <<(::std::ostream &os, const sc_signed_subref_r &a) argument
2489 operator <<(::std::ostream &os, const sc_signed &a) argument
[all...]
H A Dsc_unsigned.hh656 void print(::std::ostream &os=::std::cout) const { os << to_bool(); }
797 print(::std::ostream &os=::std::cout) const
799 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
1117 print(::std::ostream &os=::std::cout) const
1119 os << to_string(sc_io_base(os, SC_DEC), sc_io_show_base(os));
2037 operator <<(::std::ostream &os, const sc_unsigned_bitref_r &a) argument
2121 operator <<(::std::ostream &os, const sc_unsigned_subref_r &a) argument
2180 operator <<(::std::ostream &os, const sc_unsigned &a) argument
[all...]
/gem5/src/systemc/ext/dt/bit/
H A Dsc_proxy.hh447 print(::std::ostream &os=::std::cout) const
451 if (sc_io_base(os, SC_DEC) == SC_DEC)
452 os << to_string();
454 os << to_string(sc_io_base(os, SC_BIN), sc_io_show_base(os));
1379 operator << (::std::ostream &os, const sc_proxy<X> &a) argument
1381 a.print(os);
1382 return os;
/gem5/src/mem/
H A Dpacket.cc426 : curPrefixPtr(new std::string("")), os(_os), verbosity(_verbosity)
471 ccprintf(os, "%s%s\n", *(i->prefix), i->label);
484 obj->print(os, verbosity, curPrefix());
/gem5/src/sim/
H A Dcxx_manager.hh292 void serialize(std::ostream &os);
/gem5/ext/systemc/src/sysc/datatypes/misc/
H A Dsc_concatref.h430 void print( ::std::ostream& os = ::std::cout ) const
431 { os << this->value(); }
586 operator << ( ::std::ostream& os, const sc_concatref& v ) argument
588 return os << v.value();

Completed in 51 milliseconds

<<1112131415