Searched refs:os (Results 251 - 275 of 356) sorted by relevance

<<1112131415

/gem5/tests/configs/
H A Drubytest-ruby.py35 import os, optparse, sys
/gem5/configs/example/arm/
H A Dfs_bigLITTLE.py47 import os
310 if checkpoint_dir and not os.path.isabs(options.restore_from):
311 cpt = os.path.join(checkpoint_dir, options.restore_from)
328 cpt_dir = os.path.join(checkpoint_dir, "cpt.%d" % m5.curTick())
/gem5/src/cpu/minor/
H A Dlsq.hh77 friend std::ostream &operator <<(std::ostream &os,
265 void reportData(std::ostream &os) const;
270 friend std::ostream & operator <<(std::ostream &os,
273 friend std::ostream & operator <<(std::ostream &os,
/gem5/util/stats/
H A Doutput.py66 from os.path import expanduser, isdir, join as joinpath
69 import os, re, urllib
101 os.mkdir(directory)
H A Dprofile.py248 import os, os.path, re
249 from os.path import expanduser, join as joinpath
253 for root,dirs,files in os.walk(directory):
260 prefix = os.path.commonprefix([root, directory])
393 from os.path import expanduser
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxtype_params.h331 operator << ( ::std::ostream& os, const sc_fxtype_params& a ) argument
333 a.print( os );
334 return os;
H A Dscfx_rep.cpp2770 scfx_rep::print( ::std::ostream& os ) const
2772 os << to_string( SC_DEC, -1, SC_E );
2781 scfx_rep::dump( ::std::ostream& os ) const
2783 os << "scfx_rep" << ::std::endl;
2784 os << "(" << ::std::endl;
2786 os << "mant =" << ::std::endl;
2791 os << buf << ::std::endl;
2794 os << "wp = " << m_wp << ::std::endl;
2795 os << "sign = " << m_sign << ::std::endl;
2797 os << "stat
[all...]
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_simcontext.cpp1954 print_status_expression( std::ostream& os, sc_status s );
1957 std::ostream& operator << ( std::ostream& os, sc_status s ) argument
1963 case Status: { os << #Status; } break
1987 print_status_expression( os, s );
1989 os << "0x" << std::hex << +s;
1992 return os;
1997 print_status_expression( std::ostream& os, sc_status s ) argument
2015 os << "(";
2017 os << bits[i] << "|";
2018 os << bit
[all...]
/gem5/src/systemc/ext/dt/fx/
H A Dsc_fxtype_params.hh257 operator << (::std::ostream &os, const sc_fxtype_params &a) argument
259 a.print(os);
260 return os;
/gem5/src/arch/x86/
H A Dtypes.hh239 operator << (std::ostream & os, const ExtMachInst & emi) argument
241 ccprintf(os, "\n{\n\tleg = %#x,\n\trex = %#x,\n\t"
252 return os;
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dgmock_class.py32 import os
199 _INDENT = int(os.environ['INDENT'])
203 sys.stderr.write('Unable to use indent of %s\n' % os.environ.get('INDENT'))
/gem5/configs/dram/
H A Dlat_mem_rd.py43 import os
137 cfg_file_name = os.path.join(m5.options.outdir, "lat_mem_rd.cfg")
222 filename = os.path.join(m5.options.outdir,
/gem5/util/
H A Dcpt_upgrader.py77 import glob, types, sys, os
78 import os.path as osp
309 for root,dirs,files in os.walk(path):
H A Dfind_copyrights.py3 import os
231 if os.path.isfile(base):
233 elif os.path.isdir(base):
/gem5/src/python/m5/util/
H A Dfdthelper.py44 import os
255 filename = os.path.realpath(filename)
265 filename = os.path.realpath(filename)
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py40 import os
74 last_email_file_name = os.path.expanduser("~/.last_codereview_email_address")
76 if os.path.exists(last_email_file_name):
368 self.cookie_file = os.path.expanduser("~/.codereview_upload_cookies")
370 if os.path.exists(self.cookie_file):
381 fd = os.open(self.cookie_file, os.O_CREAT, 0600)
382 os.close(fd)
384 os.chmod(self.cookie_file, 0600)
874 dirname, relfilename = os
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py40 import os
74 last_email_file_name = os.path.expanduser("~/.last_codereview_email_address")
76 if os.path.exists(last_email_file_name):
368 self.cookie_file = os.path.expanduser("~/.codereview_upload_cookies")
370 if os.path.exists(self.cookie_file):
381 fd = os.open(self.cookie_file, os.O_CREAT, 0600)
382 os.close(fd)
384 os.chmod(self.cookie_file, 0600)
874 dirname, relfilename = os
[all...]
/gem5/ext/testlib/
H A Dhandlers.py37 import os
81 helper.mkdir_p(os.path.dirname(stdout))
82 helper.mkdir_p(os.path.dirname(stderr))
158 os.path.join(self.directory, constants.pickle_filename))
161 os.path.join(self.directory, constants.xml_filename))
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbutils.h93 sc_io_base( systemc_ostream& os, sc_numrep def_base ) argument
95 std::ios::fmtflags flags = os.flags() & std::ios::basefield;
103 sc_io_show_base( systemc_ostream& os )
105 return (os.flags() & ::std::ios::showbase) != 0 ;
124 operator << ( systemc_ostream& os, sc_numrep numrep ) argument
126 os << to_string( numrep );
127 return os;
/gem5/src/systemc/ext/dt/int/
H A Dsc_nbutils.hh93 sc_io_base(::std::ostream &os, sc_numrep def_base) argument
95 std::ios::fmtflags flags = os.flags() & std::ios::basefield;
103 sc_io_show_base(::std::ostream &os) argument
105 return (os.flags() & ::std::ios::showbase) != 0;
111 operator << (::std::ostream &os, sc_numrep numrep) argument
113 os << to_string(numrep);
114 return os;
/gem5/configs/example/
H A Dapu_se.py37 import optparse, os, re
366 full_path = os.path.join(base, rel_path)
372 return find_path(base_list, rel_path, os.path.isfile)
374 executable = find_path(benchmark_path, options.cmd, os.path.exists)
377 if os.path.isdir(executable):
386 kernel_path = os.path.dirname(executable)
387 kernel_files = glob.glob(os.path.join(kernel_path, '*.asm'))
/gem5/src/systemc/dt/fx/
H A Dscfx_rep.cc2515 scfx_rep::print(::std::ostream &os) const
2517 os << to_string(SC_DEC, -1, SC_E);
2526 scfx_rep::dump(::std::ostream &os) const
2528 os << "scfx_rep" << ::std::endl;
2529 os << "(" << ::std::endl;
2531 os << "mant =" << ::std::endl;
2536 os << buf << ::std::endl;
2539 os << "wp = " << m_wp << ::std::endl;
2540 os << "sign = " << m_sign << ::std::endl;
2542 os << "stat
[all...]
/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc150 void ExpectationBase::DescribeCallCountTo(::std::ostream* os) const
155 *os << " Expected: to be ";
156 cardinality().DescribeTo(os);
157 *os << "\n Actual: ";
158 Cardinality::DescribeActualCallCountTo(call_count(), os); local
162 *os << " - " << (IsOverSaturated() ? "over-saturated" :
/gem5/src/sim/
H A Dpseudo_inst.cc554 ostream *os(out->stream());
555 if (!os)
559 os->seekp(offset);
564 os->write(buf, len);
565 if (os->fail() || os->bad())
/gem5/src/mem/slicc/
H A Dparser.py31 import os.path
254 dirname = os.path.dirname(self.current_source)
255 if os.path.exists(os.path.join(dirname, p[2])):
256 filename = os.path.join(dirname, p[2])
258 filename = os.path.join(self.base_dir, p[2])

Completed in 70 milliseconds

<<1112131415