Searched refs:os (Results 101 - 125 of 356) sorted by relevance

1234567891011>>

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbdefs.h265 operator << ( ::std::ostream& os, sc_dt::int64 a ) argument
267 sc_dt::operator << ( os, a );
268 return os;
273 operator << ( ::std::ostream& os, sc_dt::uint64 a ) argument
275 sc_dt::operator << ( os, a );
276 return os;
/gem5/src/kern/linux/
H A Dhelpers.cc59 dumpDmesgEntry(const uint8_t *base, const uint8_t *end, std::ostream &os) argument
85 ccprintf(os, "[%.6f] ", de.ts_nsec * 10e-9);
86 os.write((char *)base + sizeof(de), de.text_len);
87 os << std::endl;
93 Linux::dumpDmesg(ThreadContext *tc, std::ostream &os) argument
147 int ret = dumpDmesgEntry(cur, end, os);
/gem5/src/base/
H A Dtrie.hh86 dump(std::ostream &os, int level) argument
89 ccprintf(os, "|");
92 ccprintf(os, "Root ");
94 ccprintf(os, "+ ");
95 ccprintf(os, "(%p, %p, %#X, %#X, %p)\n",
98 kids[0]->dump(os, level + 1);
100 kids[1]->dump(os, level + 1);
356 dump(const char *title, std::ostream &os=std::cout) argument
358 ccprintf(os, "**************************************************\n");
359 ccprintf(os, "*** Star
[all...]
/gem5/site_scons/site_tools/
H A Ddefault.py41 import os
64 for key,val in sorted(os.environ.iteritems()):
/gem5/src/systemc/ext/channel/
H A Dsc_fifo.hh162 print(std::ostream &os=std::cout) const
166 os << *pos << ::std::endl;
170 dump(std::ostream &os=std::cout) const
172 os << "name = " << name() << std::endl;
176 os << "value[" << idx++ << "] = " << *pos << ::std::endl;
219 operator << (std::ostream &os, const sc_fifo<T> &f) argument
221 f.print(os);
222 return os;
/gem5/util/
H A Dslicc30 from os.path import dirname, join
H A Ddecode_packet_trace.py43 import os
48 util_dir = os.path.dirname(os.path.realpath(__file__))
/gem5/util/tlm/
H A DSConstruct35 import os
90 deps.append(File(os.path.join(gem5_root, 'build', gem5_arch,
/gem5/ext/googletest/googletest/test/
H A Dgtest_throw_on_failure_test.py40 import os
65 os.environ[env_var] = value
66 elif env_var in os.environ:
67 del os.environ[env_var]
/gem5/src/systemc/tests/
H A Dconfig.py32 import os
/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()) << " " <<
140 virtual void output(std::ostream &os) = 0;
159 VcdTraceScope::output(const std::string &name, std::ostream &os) argument
161 os << "$scope module " << name << " $end" << std::endl;
178 ccprintf(os, "$var %s % 3d %s %s $end\n",
181 ccprintf(os, "$var %s % 3d %s %s [%d:0] $end\n",
187 p.second->output(p.first, os);
189 os << "
[all...]
/gem5/ext/drampower/src/
H A DParameter.cc113 ostream& Data::operator<<(ostream& os, const Parameter& parameter) argument
115 os << "<parameter " <<
120 return os;
/gem5/src/cpu/o3/
H A Dthread_state.hh150 OutputStream *os(
152 profile->dump(tc, *os->stream());
153 simout.close(os);
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal.cpp172 sc_signal<bool,POL>::print( ::std::ostream& os ) const
174 os << m_cur_val;
179 sc_signal<bool,POL>::dump( ::std::ostream& os ) const
181 os << " name = " << name() << ::std::endl;
182 os << " value = " << m_cur_val << ::std::endl;
183 os << "new value = " << m_new_val << ::std::endl;
297 sc_signal<sc_dt::sc_logic,POL>::print( ::std::ostream& os ) const
299 os << m_cur_val;
304 sc_signal<sc_dt::sc_logic,POL>::dump( ::std::ostream& os ) const
306 os << " nam
[all...]
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxcast_switch.h163 operator << ( ::std::ostream& os, const sc_fxcast_switch& a ) argument
165 a.print( os );
166 return os;
/gem5/src/systemc/ext/dt/fx/
H A Dsc_fxcast_switch.hh151 operator << (::std::ostream &os, const sc_fxcast_switch &a) argument
153 a.print(os);
154 return os;
/gem5/src/systemc/ext/dt/int/
H A Dsc_length_param.hh183 operator << (::std::ostream &os, const sc_length_param &a) argument
185 a.print(os);
186 return os;
/gem5/tests/gem5/memory/
H A Dsimple-run.py54 config_file=os.path.join(os.path.dirname(os.path.abspath(__file__)),
/gem5/tests/legacy-configs/
H A Drun.py40 import os
41 from os.path import abspath, join as joinpath, dirname
64 test_progs = os.environ.get('M5_TEST_PROGS', '/dist/m5/regression/test-progs')
/gem5/configs/learning_gem5/part3/
H A Dsimple_ruby.py88 thispath = os.path.dirname(os.path.realpath(__file__))
89 binary = os.path.join(thispath, '../../../', 'tests/test-progs/threads/bin/',
/gem5/src/arch/generic/
H A Dtypes.hh187 operator<<(std::ostream & os, const SimplePCState<MachInst> &pc) argument
189 ccprintf(os, "(%#x=>%#x)", pc.pc(), pc.npc());
190 return os;
285 operator<<(std::ostream & os, const UPCState<MachInst> &pc) argument
287 ccprintf(os, "(%#x=>%#x).(%d=>%d)",
289 return os;
364 operator<<(std::ostream & os, const DelaySlotPCState<MachInst> &pc) argument
366 ccprintf(os, "(%#x=>%#x=>%#x)",
368 return os;
463 operator<<(std::ostream & os, cons argument
[all...]
/gem5/util/style/
H A Dfile_types.py29 import os
92 basename = os.path.basename(filename)
93 name,extension = os.path.splitext(basename)
143 for root,dirs,files in os.walk(base):
155 fullpath = os.path.join(base, root, filename)
/gem5/src/cpu/minor/
H A Dpipe_data.hh159 void reportData(std::ostream &os) const;
163 std::ostream &operator <<(std::ostream &os, BranchData::Reason reason);
167 std::ostream &operator <<(std::ostream &os, const BranchData &branch);
246 void reportData(std::ostream &os) const;
290 void reportData(std::ostream &os) const;
/gem5/util/plot_dram/
H A Dlowp_dram_sweep_plot.py42 import os
67 if not os.path.isfile(args.statsfile):
69 if not os.path.isdir(args.outdir):
70 os.mkdir(args.outdir)
84 os.chdir(args.outdir)
/gem5/configs/example/
H A Druby_direct_test.py38 import os, optparse, sys
46 config_path = os.path.dirname(os.path.abspath(__file__))
47 config_root = os.path.dirname(config_path)
48 m5_root = os.path.dirname(config_root)

Completed in 27 milliseconds

1234567891011>>