Lines Matching defs:level

78     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),
244 // level = level at which reset is active, either true or false.
246 void sc_reset::reset_signal_is( bool async, const sc_in<bool>& port, bool level)
261 reset_signal_is( async, *iface_p, level );
263 new sc_reset_finder( async, &port, level, process_p );
272 bool async, const sc_inout<bool>& port, bool level )
287 reset_signal_is( async, *iface_p, level );
289 new sc_reset_finder( async, &port, level, process_p );
298 bool async, const sc_out<bool>& port, bool level )
313 reset_signal_is( async, *iface_p, level );
315 new sc_reset_finder( async, &port, level, process_p );
336 // level = is the level at which reset is active, either true or false.
342 bool async, const sc_signal_in_if<bool>& iface, bool level )
359 reset_target.m_level = level;
362 if ( iface.read() == level ) process_p->initially_in_reset( async );