Searched refs:sc_in (Results 226 - 250 of 266) sorted by relevance

1234567891011

/gem5/src/systemc/tests/systemc/tracing/wif_trace/test04/
H A Dtest04.cpp44 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test05/
H A Dtest05.cpp44 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test07/
H A Dtest07.cpp44 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test08/
H A Dtest08.cpp44 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test09/
H A Dtest09.cpp44 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test11/
H A Dtest11.cpp44 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test12/
H A Dtest12.cpp44 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/utils/sc_vector/test02/
H A Dtest02.cpp82 sc_vector< sc_in<bool> > inps;
/gem5/src/systemc/core/
H A Dsc_spawn.cc34 #include "systemc/ext/channel/sc_in.hh"
179 sc_spawn_options::reset_signal_is(const sc_in<bool> &port, bool value)
205 sc_spawn_options::async_reset_signal_is(const sc_in<bool> &port, bool value)
/gem5/src/systemc/tests/systemc/kernel/process_control/test01/
H A Dtest01.cpp201 sc_in<bool> m_clk;
209 sc_in<bool> m_reset;
/gem5/src/systemc/ext/channel/
H A D_using.hh60 using sc_core::sc_in;
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/test10/
H A Dtest10.cpp157 sc_in<bool> m_clk;
/gem5/src/systemc/tests/systemc/kernel/process_control/test06/
H A Dtest06.cpp120 sc_in<bool> clk;
/gem5/src/systemc/tests/systemc/kernel/sc_event/test02/
H A Dtest02.cpp66 sc_in<int> in;
/gem5/src/systemc/tests/systemc/kernel/sc_module/test05/
H A Dtest05.cpp64 sc_in<int> in;
/gem5/src/systemc/tests/include/specialized_signals/
H A Dscx_signal_signed.h381 virtual inline void write( const sc_in<sc_dt::sc_bigint<W> >& value );
858 SC_TEMPLATE // Write a sc_in<sc_dt::sc_bigint<W> > value to this object instance.
859 inline void sc_signal<sc_dt::sc_bigint<W> >::write( const sc_in<sc_dt::sc_bigint<W> >& value )
922 // CLASS sc_in<sc_dt::sc_bigint<W> >
925 // value. This class is a specialization of the generic sc_in class to
929 class sc_in<sc_dt::sc_bigint<W> > : class in namespace:sc_core
941 typedef sc_in<sc_dt::sc_bigint<W> > this_type;
991 sc_in() function in class:sc_core::sc_in
995 explicit sc_in( const char* name_ ) function in class:sc_core::sc_in
999 explicit sc_in( cons function in class:sc_core::sc_in
1003 sc_in( const char* name_, const in_if_type& interface_ ) function in class:sc_core::sc_in
1007 explicit sc_in( in_port_type& parent_ ) function in class:sc_core::sc_in
1011 sc_in( const char* name_, in_port_type& parent_ ) function in class:sc_core::sc_in
1015 explicit sc_in( inout_port_type& parent_ ) function in class:sc_core::sc_in
1019 sc_in( const char* name_, inout_port_type& parent_ ) function in class:sc_core::sc_in
1023 sc_in( this_type& parent_ ) function in class:sc_core::sc_in
1027 sc_in( const char* name_, this_type& parent_ ) function in class:sc_core::sc_in
[all...]
H A Dscx_signal_unsigned.h371 virtual inline void write( const sc_in<sc_dt::sc_biguint<W> >& value );
852 SC_TEMPLATE // Write a sc_in<sc_dt::sc_biguint<W> > value to this object instance.
854 const sc_in<sc_dt::sc_biguint<W> >& value )
918 // CLASS sc_in<sc_dt::sc_biguint<W> >
921 // value. This class is a specialization of the generic sc_in class to
925 class sc_in<sc_dt::sc_biguint<W> > : class in namespace:sc_core
937 typedef sc_in<sc_dt::sc_biguint<W> > this_type;
987 sc_in() function in class:sc_core::sc_in
991 explicit sc_in( const char* name_ ) function in class:sc_core::sc_in
995 explicit sc_in( cons function in class:sc_core::sc_in
999 sc_in( const char* name_, const in_if_type& interface_ ) function in class:sc_core::sc_in
1003 explicit sc_in( in_port_type& parent_ ) function in class:sc_core::sc_in
1007 sc_in( const char* name_, in_port_type& parent_ ) function in class:sc_core::sc_in
1011 explicit sc_in( inout_port_type& parent_ ) function in class:sc_core::sc_in
1015 sc_in( const char* name_, inout_port_type& parent_ ) function in class:sc_core::sc_in
1019 sc_in( this_type& parent_ ) function in class:sc_core::sc_in
1023 sc_in( const char* name_, this_type& parent_ ) function in class:sc_core::sc_in
[all...]
/gem5/src/systemc/tests/systemc/examples/aes/
H A Daes.cpp246 sc_in<bool> RST_X;
248 sc_in<sc_biguint<128> > In_wire;
250 sc_in<bool> In_ack;
251 sc_in<bool> In_cmd;
254 sc_in<bool> Out_req;
679 sc_in<bool> RST_X;
681 sc_in<sc_biguint<128> > In_wire;
683 sc_in<bool> In_ack;
684 sc_in<bool> In_cmd;
687 sc_in<boo
[all...]
/gem5/src/systemc/ext/core/
H A Dsc_module.hh69 class sc_in;
198 void reset_signal_is(const sc_in<bool> &, bool);
203 void async_reset_signal_is(const sc_in<bool> &, bool);
/gem5/src/systemc/tests/systemc/kernel/reset_signal_is/test05/
H A Dtest05.cpp204 sc_in<bool> m_clk;
/gem5/src/systemc/tests/systemc/kernel/sc_process_handle/test01/
H A Dtest01.cpp147 sc_in<bool> m_clk;
/gem5/src/systemc/tests/systemc/misc/sim_tests/new_prop/new_prop1/
H A Dnew_prop1.cpp43 sc_in<bool> i[16];
/gem5/src/systemc/tests/systemc/misc/sim_tests/new_prop/new_prop2/
H A Dnew_prop2.cpp43 sc_in<bool> i[16];
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal_resolved_ports.h45 : public sc_in<sc_dt::sc_logic>
54 typedef sc_in<data_type> base_type;
H A Dsc_signal_rv_ports.h50 : public sc_in<sc_dt::sc_lv<W> >
59 typedef sc_in<data_type> base_type;

Completed in 38 milliseconds

1234567891011