Searched refs:async (Results 1 - 10 of 10) sorted by relevance

/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_reset.cpp78 sc_reset_finder( bool async, const sc_in<bool>* port_p, bool level,
80 sc_reset_finder( bool async, const sc_inout<bool>* port_p, bool level,
82 sc_reset_finder( bool async, const sc_out<bool>* port_p, bool level,
100 bool async, const sc_in<bool>* port_p, bool level, sc_process_b* target_p) :
101 m_async(async), m_level(level), m_next_p(0), m_in_p(port_p), m_inout_p(0),
109 bool async, const sc_inout<bool>* port_p, bool level, sc_process_b* target_p
111 m_async(async), m_level(level), m_next_p(0), m_in_p(0), m_inout_p(port_p),
119 bool async, const sc_out<bool>* port_p, bool level, sc_process_b* target_p
121 m_async(async), m_level(level), m_next_p(0), m_in_p(0), m_inout_p(0),
242 // async
99 sc_reset_finder( bool async, const sc_in<bool>* port_p, bool level, sc_process_b* target_p) argument
108 sc_reset_finder( bool async, const sc_inout<bool>* port_p, bool level, sc_process_b* target_p ) argument
118 sc_reset_finder( bool async, const sc_out<bool>* port_p, bool level, sc_process_b* target_p ) argument
246 reset_signal_is( bool async, const sc_in<bool>& port, bool level) argument
271 reset_signal_is( bool async, const sc_inout<bool>& port, bool level ) argument
297 reset_signal_is( bool async, const sc_out<bool>& port, bool level ) argument
341 reset_signal_is( bool async, const sc_signal_in_if<bool>& iface, bool level ) argument
[all...]
H A Dsc_spawn_options.cpp44 sc_spawn_reset_base( bool async, bool level ) argument
45 : m_async( async ), m_level(level)
51 bool m_async; // = true if async reset.
63 sc_spawn_reset( bool async, const SOURCE& source, bool level ) argument
64 : sc_spawn_reset_base(async, level), m_source(source)
H A Dsc_reset.h91 reset_signal_is(bool async, const sc_signal_in_if<bool>& iface,
94 reset_signal_is( bool async, const sc_in<bool>& iface, bool level);
96 reset_signal_is( bool async, const sc_inout<bool>& iface, bool level);
98 reset_signal_is( bool async, const sc_out<bool>& iface, bool level);
H A Dsc_process.cpp380 // async = true if this is an asynchronous reset.
383 void sc_process_b::reset_changed( bool async, bool asserted ) argument
388 if ( !sc_allow_process_control_corners && !async &&
404 if ( async )
420 if ( async )
H A Dsc_process.h377 inline void initially_in_reset( bool async );
383 void reset_changed( bool async, bool asserted );
392 virtual void throw_reset( bool async ) = 0;
491 // async = true if this an asynchronous reset.
493 inline void sc_process_b::initially_in_reset( bool async )
495 if ( async )
H A Dsc_method_process.cpp512 // async = true if this is an asynchronous reset.
514 void sc_method_process::throw_reset( bool async )
531 m_throw_status = async ? THROW_ASYNC_RESET : THROW_SYNC_RESET;
532 if ( async )
H A Dsc_thread_process.cpp562 void sc_thread_process::throw_reset( bool async )
579 m_throw_status = async ? THROW_ASYNC_RESET : THROW_SYNC_RESET;
590 if ( async )
H A Dsc_method_process.h164 virtual void throw_reset( bool async );
H A Dsc_thread_process.h145 virtual void throw_reset( bool async );
/gem5/ext/pybind11/tests/
H A Dtest_async.py13 async def get_await_result(x):

Completed in 25 milliseconds