Searched refs:m_cur_val (Results 1 - 6 of 6) sorted by relevance

/gem5/src/systemc/tests/systemc/kernel/sc_event/test03/
H A Dtest03.cpp55 if( m_new_val != m_cur_val ) {
56 m_cur_val = m_new_val;
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal.h88 m_change_event_p( 0 ), m_cur_val( T() ),
94 m_change_event_p( 0 ), m_cur_val( T() ),
101 , m_cur_val( initial_value_ )
133 { return m_cur_val; }
137 { sc_deprecated_get_data_ref(); return m_cur_val; }
193 T m_cur_val; member in class:sc_core::sc_signal
227 bool value_changed = !( m_cur_val == value_ );
243 os << m_cur_val; local
251 os << " value = " << m_cur_val << ::std::endl;
261 if( !( m_new_val == m_cur_val ) ) {
423 bool m_cur_val; // current value of object. member in class:sc_core::sc_signal
588 sc_dt::sc_logic m_cur_val; // current value of object. member in class:sc_core::sc_signal
[all...]
H A Dsc_signal.cpp160 bool value_changed = !( m_cur_val == value_ );
174 os << m_cur_val; local
182 os << " value = " << m_cur_val << ::std::endl;
192 if( !( m_new_val == m_cur_val ) ) {
202 // must come after the update of m_cur_val for things to work properly!
204 m_cur_val = m_new_val;
210 sc_event* event_p = this->m_cur_val
284 bool value_changed = !( m_cur_val == value_ );
299 os << m_cur_val; local
307 os << " value = " << m_cur_val <<
[all...]
H A Dsc_clock.cpp333 this->m_cur_val = false;
336 this->m_cur_val = true;
/gem5/src/systemc/ext/channel/
H A Dsc_signal.hh167 ScSignalBasePicker<T>(_name), m_cur_val(T()), m_new_val(T()),
171 ScSignalBasePicker<T>(_name), m_cur_val(initial_value),
187 virtual const T &read() const { return m_cur_val; }
199 bool changed = !(m_cur_val == m_new_val);
216 virtual void print(std::ostream &os=std::cout) const { os << m_cur_val; } local
221 os << " value = " << m_cur_val << ::std::endl;
237 T m_cur_val; member in class:sc_gem5::ScSignalBaseT
305 if (this->m_new_val == this->m_cur_val)
308 this->m_cur_val = this->m_new_val;
359 if (this->m_new_val == this->m_cur_val)
[all...]
H A Dsc_buffer.hh87 this->m_cur_val = this->m_new_val;

Completed in 11 milliseconds