Searched refs:read (Results 351 - 375 of 686) sorted by relevance

<<11121314151617181920>>

/gem5/src/systemc/tests/systemc/communication/sc_export/test01/
H A Dtest01.cpp12 cout << "READ_LEAF: change " << (int)in->read() << endl;
27 out = out.read() + 1;
59 cout << "TOP: change " << (int)in.read() << endl;
/gem5/src/systemc/tests/systemc/compliance_1666/test211/
H A Dtest211.cpp35 int read() function in struct:my_port
38 return (*this)->read();
57 int i = p.read();
/gem5/src/systemc/tests/systemc/misc/communication/channel/test2/
H A Dtest2.cpp64 val = in.read();
67 val = in.read();
69 val = in.read();
77 if (in > 5 && in < 7) cout << "Proc1:: Special value 6 read\n";
/gem5/src/systemc/tests/systemc/misc/stars/star102573/
H A Dstar102573.cpp62 while (in_valid.read()==false) wait();
67 tmp2 = in_value.read();
79 inp_tmp = in_value.read();
/gem5/src/dev/serial/
H A Dterminal.hh123 void read(uint8_t &c) { read(&c, 1); } function in class:Terminal
124 size_t read(uint8_t *buf, size_t len);
147 // character read from console
/gem5/src/systemc/ext/channel/
H A Dsc_inout.hh105 void initialize(const sc_signal_in_if<T> &i) { initialize(i.read()); }
117 sc_trace(params->tf, (*this)->read(), params->name);
122 const T &read() const { return (*this)->read(); } function in class:sc_core::sc_inout
123 operator const T& () const { return (*this)->read(); }
135 (*this)->write(i.read());
141 (*this)->write(p->read());
147 (*this)->write(p->read());
153 (*this)->write(p->read());
191 sc_trace(tf, i->read(), nam
286 const bool &read() const { return (*this)->read(); } function in class:sc_core::sc_inout
476 const sc_dt::sc_logic &read() const { return (*this)->read(); } function in class:sc_core::sc_inout
[all...]
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test1/
H A Dtest1.cpp76 while (in1.read() != i) {
77 cout << "Sync: Value written = " << i << " value1 read = " << in1.read() << " value2 read = " << in2.read() << endl;
112 cout << "AsyncProc: Value read = " << in.read() << endl;
146 cout << "AsyncBlock: Value read = " << in.read() << endl;
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test2/
H A Dtest2.cpp75 while (in2.read() != i) {
76 cout << "Sync: Value written = " << i << " value1 read = " << in1.read() << " value2 read = " << in2.read() << endl;
110 cout << "AsyncProc: Value read = " << in.read() << endl;
140 cout << "AsyncBlock: Value read = " << in.read() << endl;
/gem5/src/dev/storage/
H A Dide_ctrl.hh110 void accessCommand(Addr offset, int size, uint8_t *data, bool read);
111 void accessControl(Addr offset, int size, uint8_t *data, bool read);
112 void accessBMI(Addr offset, int size, uint8_t *data, bool read);
140 void dispatchAccess(PacketPtr pkt, bool read);
157 Tick read(PacketPtr pkt) override;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_pause/
H A Dsc_pause.cpp108 sc_assert( sig1.read() == 1 );
109 sc_assert( sig2.read() == 2 );
110 sc_assert( sig3.read() == 3 );
119 sc_assert( sig4.read() == 0 );
128 sc_assert( sig4.read() == 4 );
136 sc_assert( sig1.read() == 1 );
137 sc_assert( sig2.read() == 2 );
138 sc_assert( sig3.read() == 3 );
139 sc_assert( sig4.read() == 0 );
232 sc_assert( sig.read()
[all...]
/gem5/src/systemc/tests/systemc/misc/communication/channel/dataflow/
H A Ddataflow.cpp103 buffer = in.read();
134 temp = in.read();
135 temp = in.read();
166 out.write(in.read());
197 int tmp = a.read() + b.read();
/gem5/src/systemc/tests/systemc/utils/sc_report/cached/
H A Dcached.cpp123 sc_report_handler::report(SC_INFO, id.read(), "aa"+ofs, "file_t1", 110+ofs);
131 sc_report_handler::report(SC_WARNING, id.read(), "bb"+ofs, "file_m1", 210+ofs);
138 sc_report_handler::report(SC_WARNING, id.read(), "dd"+ofs, "file_t2", 120+ofs);
146 sc_report_handler::report(SC_INFO, id.read(), "ee"+ofs, "file_m2", 220+ofs);
186 sc_report_handler::report(SC_INFO, ID.read(), "cc", "file_g", 300);
200 sc_report_handler::report(SC_INFO, ID.read(), "c", "file_g", 310);
/gem5/src/arch/alpha/
H A Dvtophys.cc52 PageTableEntry level1 = mem.read<uint64_t>(level1_pte);
59 PageTableEntry level2 = mem.read<uint64_t>(level2_pte);
66 PageTableEntry level3 = mem.read<uint64_t>(level3_pte);
/gem5/src/systemc/tests/systemc/misc/sim_tests/cgen/
H A Dcgen.cpp119 sum += data_i.read();
137 sprintf( buf, "Data = %4d\tCode = %4d", data.read(), code.read() );
/gem5/src/dev/alpha/
H A Dtsunami_pchip.hh80 Tick read(PacketPtr pkt) override;
/gem5/src/dev/x86/
H A Di8237.hh58 Tick read(PacketPtr pkt) override;
/gem5/src/dev/mips/
H A Dmalta_cchip.hh97 Tick read(PacketPtr pkt) override;
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal.h131 // read the current value
132 virtual const T& read() const function in class:sc_core::sc_signal
151 { return read(); }
158 { write( a.read() ); return *this; }
161 { write( a.read() ); return *this; }
172 sc_trace( tf, read(), name() );
353 // read the current value
354 virtual const bool& read() const function in class:sc_core::sc_signal
380 { return read(); }
387 { write( a.read() ); retur
519 virtual const sc_dt::sc_logic& read() const function in class:sc_core::sc_signal
[all...]
/gem5/ext/systemc/src/sysc/tracing/
H A Dsc_trace.cpp95 tf->trace( object.read(), name, width );
106 tf->trace( object.read(), name, width );
117 tf->trace( object.read(), name, width );
128 tf->trace( object.read(), name, width );
/gem5/src/systemc/tests/systemc/bugs/bug_147853/
H A Dbug_147853.cpp13 cerr << sc_time_stamp() <<" " << name() << " clk = " << clk.read() << "\n";
/gem5/src/systemc/tests/systemc/communication/sc_buffer/test01/
H A Dtest01.cpp76 cout << sc_time_stamp() << " " << in.read() << endl;
/gem5/src/systemc/tests/systemc/misc/stars/star104726/
H A Dstar104726.cpp55 c = data_in.read();
/gem5/src/systemc/tests/systemc/misc/stars/star110668/
H A Dstar110668.cpp56 data_in = input.read();
/gem5/src/systemc/tests/systemc/misc/stars/star114477/
H A Ddesign_rtl.h126 REM_UNS_OP( count.read(), C18_B, C18_REMAINDER );
193 out_a1[4].write( out_a1.read()[6] );
194 out_a0[3].write( (0 ^ out_a1.read()[6]) );
195 out_a0[4].write( (0 ^ out_a1.read()[6]) );
196 out_a0[6].write( (0 ^ out_a1.read()[6]) );
197 out_a1[2].write( !(out_a1.read()[6]) );
198 out_a0[0].write( (out_a1.read()[2] ^ 0) );
199 out_a0[1].write( (out_a1.read()[6] ^ out_a1.read()[2]) );
/gem5/src/systemc/tests/systemc/misc/stars/star130786/
H A Dtest.cpp71 a = in.read();

Completed in 27 milliseconds

<<11121314151617181920>>