Searched refs:m_value (Results 1 - 18 of 18) sorted by relevance

/gem5/ext/systemc/src/sysc/communication/
H A Dsc_semaphore.cpp62 m_value( init_value_ )
64 if( m_value < 0 ) {
72 m_value( init_value_ )
74 if( m_value < 0 ) {
90 -- m_value;
103 -- m_value;
113 ++m_value;
H A Dsc_semaphore.h70 { return m_value; }
80 { return ( m_value <= 0 ); }
88 sc_event m_free; // event to block on when m_value is negative
89 int m_value; // current value of the semaphore member in class:sc_core::sc_semaphore
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_time.h143 value_type m_value; member in class:sc_core::sc_time
158 : m_value( 0 )
163 : m_value( t.m_value )
173 m_value = t.m_value;
184 return m_value;
192 return sc_dt::uint64_to_double( m_value );
202 return ( m_value == t.m_value );
[all...]
H A Dsc_time.cpp84 : m_value( 0 )
91 m_value = SCAST<sc_dt::int64>( tmp );
97 : m_value( 0 )
104 m_value = SCAST<sc_dt::int64>( tmp );
110 : m_value( 0 )
126 m_value = SCAST<sc_dt::int64>( tmp );
130 m_value = SCAST<sc_dt::int64>( tmp );
137 : m_value( 0 )
154 m_value = SCAST<sc_dt::int64>( tmp );
156 m_value
[all...]
H A Dsc_process.h241 sc_throw_it( const EXCEPT& value ) : m_value(value) { }
243 virtual inline this_type* clone() const { return new this_type(m_value); }
244 virtual inline void throw_it() { throw m_value; }
246 EXCEPT m_value; // value to be thrown. member in class:sc_core::sc_throw_it
/gem5/src/systemc/ext/dt/fx/
H A Dsc_context.hh151 const T m_value; member in class:sc_dt::sc_context
221 m_value(value_),
227 m_def_value_ptr = &m_value;
247 m_def_value_ptr = &m_value;
277 return m_value;
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_context.h160 const T m_value; member in class:sc_dt::sc_context
239 : m_value( value_ ),
246 m_def_value_ptr = &m_value;
270 m_def_value_ptr = &m_value;
308 return m_value;
/gem5/src/cpu/testers/rubytest/
H A DCheck.hh70 uint8_t m_value; member in class:Check
H A DCheck.cc196 *writeData = m_value + m_store_count;
295 (m_value + m_store_count), data->getByte(0));
297 data->setByte(0, (m_value + m_store_count));
313 if (uint8_t(m_value + byte_number) != data->getByte(byte_number)) {
315 "byte_number: %d m_value+byte_number: %d byte: %d %s"
318 (int)m_value + byte_number,
357 m_value = random_mt.random(0, 0xff); // One byte
377 << (int)m_value << ", status: "
389 m_address, (int)m_value, TesterStatus_to_string(m_status).c_str(),
/gem5/src/mem/ruby/network/simple/
H A DPerfectSwitch.cc49 return (l1.m_value < l2.m_value);
91 l.m_value = 0;
174 m_link_order[out].m_value = 0;
187 m_link_order[out].m_value = value;
H A DPerfectSwitch.hh54 int m_value; member in struct:LinkOrder
/gem5/ext/pybind11/tests/
H A Dtest_pickling.cpp16 Pickleable(const std::string &value) : m_value(value) { }
17 const std::string &value() const { return m_value; }
24 std::string m_value; member in class:Pickleable
/gem5/ext/systemc/src/sysc/datatypes/misc/
H A Dsc_concatref.h612 bool m_value; // Value for this obj. member in class:sc_dt::sc_concat_bool
619 : sc_value_base(), m_value()
632 result_p->m_value = v;
656 if ( m_value )
660 return m_value;
665 return m_value ? 1 : 0;
/gem5/src/systemc/ext/dt/misc/
H A Dsc_concatref.hh566 bool m_value; // Value for this obj. member in class:sc_dt::sc_concat_bool
570 sc_concat_bool() : sc_value_base(), m_value() {}
580 result_p->m_value = v;
607 if (m_value)
611 return m_value;
617 return m_value ? 1 : 0;
/gem5/ext/libelf/
H A Delf32.h150 Elf32_Lword m_value; /* symbol value */ member in struct:__anon21
H A Delf64.h164 Elf64_Lword m_value; /* symbol value */ member in struct:__anon37
/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h327 PyErr_Fetch(&m_type.ptr(), &m_value.ptr(), &m_trace.ptr());
338 void restore() { PyErr_Restore(m_type.release().ptr(), m_value.release().ptr(), m_trace.release().ptr()); }
350 const object& value() const { return m_value; }
354 object m_type, m_value, m_trace; member in class:error_already_set
H A Dpybind11.h2019 m_value.release().dec_ref();

Completed in 46 milliseconds