Searched refs:out (Results 1 - 25 of 320) sorted by relevance

1234567891011>>

/gem5/src/systemc/tests/systemc/datatypes/fx/shift/
H A Dmain.cpp51 extern void operator_shift_right(ostream& out);
52 extern void operator_shift_left(ostream& out);
53 extern void operator_shift_both(ostream& out);
57 ostream& out = cout; local
59 out.precision(15);
61 out << "**************** operator << **********\n";
62 operator_shift_left(out);
63 out << "**************** operator >> **********\n";
64 operator_shift_right(out);
66 out << "**************** operato
[all...]
/gem5/src/base/
H A Dtypes.cc34 operator<<(std::ostream &out, const Cycles & cycles) argument
36 out << cycles.c;
37 return out;
H A Dstl_helpers.hh52 std::ostream &out; member in class:m5::stl_helpers::ContainerPrint
56 ContainerPrint(std::ostream &out) argument
57 : out(out), first(true)
67 out << " ";
69 out << elem;
82 // Write out all elements in an stl container as a space separated
86 operator<<(std::ostream& out, const C<T,A> &vec) argument
88 out << "[ ";
89 std::for_each(vec.begin(), vec.end(), ContainerPrint<T>(out));
[all...]
H A Dcprintf_formats.hh78 _format_char(std::ostream &out, const T &data, Format &fmt) argument
82 out << data;
87 _format_integer(std::ostream &out, const T &data, Format &fmt) argument
91 ios::fmtflags flags(out.flags());
95 out.setf(std::ios::hex, std::ios::basefield);
99 out.setf(std::ios::oct, std::ios::basefield);
103 out.setf(std::ios::dec, std::ios::basefield);
109 out.setf(std::ios::showbase);
113 out << "0x";
117 out << "
148 _format_float(std::ostream &out, const T &data, Format &fmt) argument
207 _format_string(std::ostream &out, const T &data, Format &fmt) argument
252 format_char(std::ostream &out, const T &data, Format &fmt) argument
256 format_char(std::ostream &out, char data, Format &fmt) argument
260 format_char(std::ostream &out, unsigned char data, Format &fmt) argument
264 format_char(std::ostream &out, signed char data, Format &fmt) argument
268 format_char(std::ostream &out, short data, Format &fmt) argument
272 format_char(std::ostream &out, unsigned short data, Format &fmt) argument
276 format_char(std::ostream &out, int data, Format &fmt) argument
280 format_char(std::ostream &out, unsigned int data, Format &fmt) argument
284 format_char(std::ostream &out, long data, Format &fmt) argument
288 format_char(std::ostream &out, unsigned long data, Format &fmt) argument
292 format_char(std::ostream &out, long long data, Format &fmt) argument
296 format_char(std::ostream &out, unsigned long long data, Format &fmt) argument
304 format_integer(std::ostream &out, const T &data, Format &fmt) argument
307 format_integer(std::ostream &out, char data, Format &fmt) argument
310 format_integer(std::ostream &out, unsigned char data, Format &fmt) argument
313 format_integer(std::ostream &out, signed char data, Format &fmt) argument
321 format_float(std::ostream &out, const T &data, Format &fmt) argument
325 format_float(std::ostream &out, float data, Format &fmt) argument
329 format_float(std::ostream &out, double data, Format &fmt) argument
337 format_string(std::ostream &out, const T &data, Format &fmt) argument
[all...]
/gem5/src/systemc/tests/systemc/datatypes/fx/arith_big/
H A Dmain.cpp56 ostream& out = cout; local
58 out << "************* add_big\n";
61 add_big(out);
62 out << "************* done\n";
H A Dadd_big.cpp53 out << r.to_string(SC_BIN) << " " << flush; \
54 out << r.to_string(SC_HEX) << " " << flush; \
55 out << m.to_string(SC_BIN) << " " << flush; \
56 out << m.to_string(SC_HEX) << "\n" << flush
61 out << "______________________ " #T_op " ______________________\n"; \
62 out << "______________________ UP ______________________\n"; \
73 out << "______________________ DOWN ______________________\n"; \
97 void add_big(ostream& out) argument
99 out.precision(15);
103 out << "************* add_bi
[all...]
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt3.2/
H A Dfsmr.cpp46 bool out; local
57 out = false;
62 out = false;
67 out = false;
70 if (c == pattern[3]) out = true;
71 else out = false;
79 found.write(out);
/gem5/src/mem/ruby/slicc_interface/
H A DAbstractEntry.hh46 virtual void print(std::ostream& out) const = 0;
53 operator<<(std::ostream& out, const AbstractEntry& obj) argument
55 obj.print(out);
56 out << std::flush;
57 return out;
H A DRubyRequest.cc36 RubyRequest::print(ostream& out) const
38 out << "[RubyRequest: ";
39 out << hex << "LineAddress = 0x" << m_LineAddress << dec << " ";
40 out << hex << "PhysicalAddress = 0x" << m_PhysicalAddress << dec << " ";
41 out << "Type = " << m_Type << " ";
42 out << hex << "ProgramCounter = 0x" << m_ProgramCounter << dec << " ";
43 out << "AccessMode = " << m_AccessMode << " ";
44 out << "Size = " << m_Size << " ";
45 out << "Prefetch = " << m_Prefetch << " ";
46 // out << "Tim
[all...]
/gem5/ext/ply/test/
H A Dcleanup.sh3 rm -f *~ *.pyc *.pyo *.dif *.out
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt3.1/
H A Dfsmr.cpp46 bool out; local
57 out = false;
62 out = false;
67 out = false;
70 if (c == pattern[3]) out = true;
71 else out = false;
79 found.write(out);
/gem5/src/mem/ruby/network/garnet2.0/
H A DGarnetLink.hh55 void print(std::ostream& out) const;
65 operator<<(std::ostream& out, const GarnetIntLink& obj) argument
67 obj.print(out);
68 out << std::flush;
69 return out;
80 void print(std::ostream& out) const;
90 operator<<(std::ostream& out, const GarnetExtLink& obj) argument
92 obj.print(out);
93 out << std::flush;
94 return out;
[all...]
H A Dflit.cc64 // Flit can be printed out for debugging purposes
66 flit::print(std::ostream& out) const
68 out << "[flit:: ";
69 out << "Id=" << m_id << " ";
70 out << "Type=" << m_type << " ";
71 out << "Vnet=" << m_vnet << " ";
72 out << "VC=" << m_vc << " ";
73 out << "Src NI=" << m_route.src_ni << " ";
74 out << "Src Router=" << m_route.src_router << " ";
75 out << "Des
[all...]
/gem5/src/mem/ruby/network/simple/
H A DSimpleLink.hh48 void print(std::ostream& out) const;
54 operator<<(std::ostream& out, const SimpleExtLink& obj) argument
56 obj.print(out);
57 out << std::flush;
58 return out;
69 void print(std::ostream& out) const;
75 operator<<(std::ostream& out, const SimpleIntLink& obj) argument
77 obj.print(out);
78 out << std::flush;
79 return out;
[all...]
H A DSimpleLink.cc42 SimpleExtLink::print(std::ostream& out) const
44 out << name();
64 SimpleIntLink::print(std::ostream& out) const
66 out << name();
/gem5/src/mem/ruby/network/
H A DBasicRouter.hh48 void print(std::ostream& out) const;
58 operator<<(std::ostream& out, const BasicRouter& obj) argument
60 obj.print(out);
61 out << std::flush;
62 return out;
/gem5/src/systemc/tests/systemc/datatypes/fx/bit/
H A Dtest_all.hh17 out << #T_op << " " << T_WL << " " << T_IWL << "\n"; \
24 out << "|"; \
26 out << "."; \
28 out << "\t"; \
34 out << "|"; \
36 out << "."; \
38 out << "\n"; \
44 out << "|"; \
46 out << "."; \
48 out << "\
[all...]
H A Dmain.cpp55 static void test_cases(ostream& out, int wl, int iwl) argument
57 test_bit(out, wl, iwl);
/gem5/src/kern/linux/
H A Dprintk.cc46 Printk(stringstream &out, Arguments args) argument
122 out << hex;
125 out << oct;
129 out.setf(ios::showbase);
132 out << "0x";
135 out << "0";
142 out.fill('0');
145 out.width(width);
148 out.setf(ios::left);
152 out << (int64_
[all...]
H A Dprintk.hh39 void Printk(std::stringstream &out, Arguments args);
/gem5/ext/ply/example/
H A Dcleanup.sh2 rm -f */*.pyc */parsetab.py */parser.out */*~ */*.class
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt6.1/
H A Dmain.cpp48 sc_signal<bool> out; local
52 driver D("Driver", clock, bus, control, out);
53 ts_buf B("Buffer", out, control, bus);
/gem5/src/mem/ruby/profiler/
H A DAccessTraceForAddress.cc42 AccessTraceForAddress::print(std::ostream& out) const
44 out << m_addr;
47 out << " " << m_total;
48 out << " | " << m_loads;
49 out << " " << m_stores;
50 out << " " << m_atomics;
51 out << " | " << m_user;
52 out << " " << m_total-m_user;
53 out << " | " << m_sharing;
54 out << " | " << m_touched_b
[all...]
/gem5/src/systemc/tests/systemc/datatypes/fx/fast_limits/
H A Dmain.cpp67 std::stringstream out; local
69 strstream out;
72 out.precision(15);
74 test_fx_float_limits(out);
75 test_fx_ufix_limits(out);
76 test_fx_fix_limits(out);
77 test_fx_fixed_limits(out);
78 test_fx_ufixed_limits(out);
81 std::string s = out.str();
84 out << '\
[all...]
/gem5/src/systemc/tests/systemc/datatypes/fx/limits/
H A Dmain.cpp66 std::stringstream out; local
68 strstream out;
71 out.precision(15);
73 test_fx_float_limits(out);
74 test_fx_ufix_limits(out);
75 test_fx_fix_limits(out);
76 test_fx_fixed_limits(out);
77 test_fx_ufixed_limits(out);
80 std::string s = out.str();
83 out << '\
[all...]

Completed in 18 milliseconds

1234567891011>>