Searched refs:os (Results 226 - 250 of 356) sorted by relevance

1234567891011>>

/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal.h241 sc_signal<T,POL>::print( ::std::ostream& os ) const
243 os << m_cur_val;
248 sc_signal<T,POL>::dump( ::std::ostream& os ) const
250 os << " name = " << name() << ::std::endl;
251 os << " value = " << m_cur_val << ::std::endl;
252 os << "new value = " << m_new_val << ::std::endl;
605 operator << ( ::std::ostream& os, const sc_signal<T,POL>& a ) argument
607 return ( os << a.read() );
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_object.h74 virtual void print(::std::ostream& os=::std::cout ) const;
77 virtual void dump(::std::ostream& os=::std::cout ) const;
H A Dsc_time.h139 void print( ::std::ostream& os = std::cout ) const;
346 operator << ( ::std::ostream& os, const sc_time& t ) argument
348 t.print( os );
349 return os;
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-message.h232 inline std::ostream& operator <<(std::ostream& os, const Message& sb) { argument
233 return os << sb.GetString();
H A Dgtest-test-part.h120 std::ostream& operator<<(std::ostream& os, const TestPartResult& result);
/gem5/src/python/m5/util/
H A Ddot_writer_ruby.py40 import os
111 dot_filename = os.path.join(outdir, dotFilename)
H A Dgrammar.py27 import os
49 dir,tab = os.path.split(output)
/gem5/ext/googletest/googletest/test/
H A Dgtest-printers_test.cc84 std::ostream& operator<<(std::ostream& os, EnumWithStreaming e) { argument
85 return os << (e == kEWS1 ? "kEWS1" : "invalid");
93 void PrintTo(EnumWithPrintTo e, std::ostream* os) { argument
94 *os << (e == kEWPT1 ? "kEWPT1" : "invalid");
118 inline void operator<<(::std::ostream& os, const StreamableInGlobal& /* x */) { argument
119 os << "StreamableInGlobal";
122 void operator<<(::std::ostream& os, const StreamableInGlobal* /* x */) { argument
123 os << "StreamableInGlobal*";
144 void PrintTo(const PrintableViaPrintTo& x, ::std::ostream* os) { argument
145 *os << "PrintableViaPrintT
152 operator <<(::std::ostream& os, const PointerPrintable* ) argument
169 PrintTo(const PrintableViaPrintToTemplate<T>& x, ::std::ostream* os) argument
185 operator <<(::std::ostream& os, const StreamableTemplateInFoo<T>& x) argument
736 operator <<( std::basic_ostream<Char, CharTraits>& os, const AllowsGenericStreaming& ) argument
753 operator <<( std::basic_ostream<Char, CharTraits>& os, const AllowsGenericStreamingTemplate<T>& ) argument
774 operator <<( std::basic_ostream<Char, CharTraits>& os, const AllowsGenericStreamingAndImplicitConversionTemplate<T>& ) argument
[all...]
/gem5/src/cpu/
H A Dprofile.hh58 const SymbolTable *symtab, std::ostream &os) const;
/gem5/ext/drampower/src/
H A DParameter.h99 std::ostream& operator<<(std::ostream& os,
/gem5/util/statetrace/arch/arm/
H A Dtracechild.hh118 std::ostream & outputStartState(std::ostream & os);
/gem5/src/systemc/ext/core/
H A Dsc_main.hh103 std::ostream &operator << (std::ostream &os, sc_status s);
/gem5/configs/example/arm/
H A Dfs_power.py46 import os
H A Dstarter_se.py49 import os
144 cwd = os.getcwd()
/gem5/tests/configs/
H A Dsimple-timing-ruby.py33 import os, optparse, sys
H A Dsimple-timing-mp-ruby.py33 import os, optparse, sys
H A Dmemtest-ruby.py34 import os, optparse, sys
/gem5/src/sim/
H A DProcess.py32 from os import getcwd
/gem5/util/style/
H A Dverifiers.py50 import os
68 assert(os.path.exists(args[1]))
89 os.remove(backup_name)
142 abs_name = os.path.abspath(name)
146 abs_base = os.path.abspath(self.base)
147 return os.path.relpath(abs_name, start=abs_base)
164 if os.path.islink(filename):
/gem5/src/systemc/core/
H A Dsc_time.cc206 sc_time::print(std::ostream &os) const
208 os << sc_time_tuple(*this).to_string();
286 operator << (std::ostream &os, const sc_time &t) argument
288 t.print(os);
289 return os;
/gem5/src/cpu/minor/
H A Dbuffers.hh70 virtual void reportData(std::ostream &os) const = 0;
96 reportData(std::ostream &os, const ElemType &elem) argument
97 { elem.reportData(os); }
107 reportData(std::ostream &os, const PtrType &elem) argument
108 { elem->reportData(os); }
H A Dfunc_unit.cc108 QueuedInst::reportData(std::ostream &os) const
110 inst->reportData(os);
/gem5/ext/sst/tests/
H A Dtest6_arm_4c.py40 import os
50 res = os.environ[name]
/gem5/util/statetrace/arch/sparc/
H A Dtracechild.hh112 std::ostream & outputStartState(std::ostream & os);
/gem5/configs/common/
H A DBenchmarks.py33 from os import environ as env

Completed in 35 milliseconds

1234567891011>>