Lines Matching refs:value

77      and ports whose target value is a SystemC native type.
160 and ports whose target value is a SystemC native type.
240 // get the value changed event
244 // read the current value
247 // get a reference to the current value (for tracing)
251 // was there a value changed event?
316 // This class implements a signal whose value acts like an sc_dt::sc_biguint<W> data
317 // value. This class is a specialization of the generic sc_signal class to
342 inline void base_write( sc_dt::int64 value );
343 inline void base_write( sc_dt::uint64 value );
344 inline void base_write( const sc_dt::sc_signed& value );
345 inline void base_write( const sc_dt::sc_unsigned& value );
371 virtual inline void write( const sc_in<sc_dt::sc_biguint<W> >& value );
372 virtual inline void write( const sc_inout<sc_dt::sc_biguint<W> >& value );
373 virtual inline void write( const sc_dt::sc_biguint<W>& value );
483 sc_dt::sc_unsigned m_new_val; // New value for this object instance.
503 SC_TEMPLATE // Return the value changed event, allocating it if necessary.
511 SC_TEMPLATE // Write a const sc_dt::sc_signed& value to this object instance.
512 inline void sc_signal<sc_dt::sc_biguint<W> >::base_write( const sc_dt::sc_signed& value )
517 m_new_val = value;
521 SC_TEMPLATE // Write a const sc_dt::sc_unsigned& value to this object instance.
522 inline void sc_signal<sc_dt::sc_biguint<W> >::base_write( const sc_dt::sc_unsigned& value )
527 m_new_val = value;
531 SC_TEMPLATE // Write a sc_dt::int64 value to this object instance.
532 inline void sc_signal<sc_dt::sc_biguint<W> >::base_write( sc_dt::int64 value )
537 m_new_val = value;
542 SC_TEMPLATE // Write a sc_dt::uint64 value to this object instance.
543 inline void sc_signal<sc_dt::sc_biguint<W> >::base_write( sc_dt::uint64 value )
548 m_new_val = value;
578 // These virtual methods allow value assignments to this object instance
580 // low order bit for this object instance's value is low_i.
581 // src = source value.
583 // instance's value.
639 SC_TEMPLATE // Return a reference to the value of this object instance.
649 SC_TEMPLATE // Return a kind value of "sc_signal".
775 SC_TEMPLATE // Read a portion of a value.
832 SC_TEMPLATE // Update the current value from new value.
847 SC_TEMPLATE // Return the value changed event.
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 )
855 { base_write( value ); }
858 SC_TEMPLATE // Write a sc_inout<sc_dt::sc_biguint<W> > value to this object instance.
860 const sc_inout<sc_dt::sc_biguint<W> >& value )
861 { base_write( value ); }
864 SC_TEMPLATE // Write a sc_dt::sc_biguint<W> value to this object instance.
865 inline void sc_signal<sc_dt::sc_biguint<W> >::write( const sc_dt::sc_biguint<W>& value )
866 { base_write( value); }
869 SC_TEMPLATE // Write a portion of a value. If this is the first write in
870 // a delta cycle we copy the existing value before setting the bits.
878 SC_TEMPLATE // Select a portion of a value.
888 SC_TEMPLATE // Write a portion of a value. If this is the first write in
889 // a delta cycle we copy the existing value before setting the bits.
897 SC_TEMPLATE // Write a portion of a value. If this is the first write in
898 // a delta cycle we copy the existing value before setting the bits.
907 SC_TEMPLATE // Write a portion of a value. If this is the first write in
908 // a delta cycle we copy the existing value before setting the bits.
921 // value. This class is a specialization of the generic sc_in class to
1055 // get the value changed event
1061 // read the current value
1069 // was there a value changed event?
1189 // sc_dt::sc_biguint<W> data value. It is derived from the sc_unsigned_in. This class is a
1313 // get the value changed event
1319 // read the current value
1327 // was there a value changed event?
1382 // value initialization
1525 // sc_dt::sc_biguint<W> data value. This class is a derivation of sc_inout, since
1652 // These operators assign a value to the bits associated with this object
1783 // These methods assign this object instance's value from the supplied
1784 // value starting at the supplied bit within that value.
1785 // src = value to use to set this object instance's value.
1786 // low_i = bit in src that is to be the low order bit of the value to set.