Lines Matching refs:value

77      and ports whose target value is a SystemC native type.
173 and ports whose target value is a SystemC native type.
250 // get the value changed event
254 // read the current value
257 // get a reference to the current value (for tracing)
261 // was there a value changed event?
326 // This class implements a signal whose value acts like an sc_dt::sc_bigint<W> data
327 // value. This class is a specialization of the generic sc_signal class to
352 inline void base_write( sc_dt::int64 value );
353 inline void base_write( sc_dt::uint64 value );
354 inline void base_write( const sc_dt::sc_signed& value );
355 inline void base_write( const sc_dt::sc_unsigned& value );
381 virtual inline void write( const sc_in<sc_dt::sc_bigint<W> >& value );
382 virtual inline void write( const sc_inout<sc_dt::sc_bigint<W> >& value );
383 virtual inline void write( const sc_dt::sc_bigint<W>& value );
493 sc_dt::sc_signed m_new_val; // New value for this object instance.
513 SC_TEMPLATE // Return the value changed event, allocating it if necessary.
521 SC_TEMPLATE // Write a const sc_dt::sc_signed& value to this object instance.
522 inline void sc_signal<sc_dt::sc_bigint<W> >::base_write( const sc_dt::sc_signed& value )
527 m_new_val = value;
531 SC_TEMPLATE // Write a const sc_dt::sc_unsigned& value to this object instance.
532 inline void sc_signal<sc_dt::sc_bigint<W> >::base_write( const sc_dt::sc_unsigned& value )
537 m_new_val = value;
541 SC_TEMPLATE // Write a sc_dt::int64 value to this object instance.
542 inline void sc_signal<sc_dt::sc_bigint<W> >::base_write( sc_dt::int64 value )
547 m_new_val = value;
552 SC_TEMPLATE // Write a sc_dt::uint64 value to this object instance.
553 inline void sc_signal<sc_dt::sc_bigint<W> >::base_write( sc_dt::uint64 value )
558 m_new_val = value;
588 // These virtual methods allow value assignments to this object instance
590 // low order bit for this object instance's value is low_i.
591 // src = source value.
593 // instance's value.
649 SC_TEMPLATE // Return a reference to the value of this object instance.
659 SC_TEMPLATE // Return a kind value of "sc_signal".
778 SC_TEMPLATE // Return this object's base value as a const reference.
783 SC_TEMPLATE // Read a portion of a value.
838 SC_TEMPLATE // Update the current value from new value.
853 SC_TEMPLATE // Return the value changed event.
858 SC_TEMPLATE // Write a sc_in<sc_dt::sc_bigint<W> > value to this object instance.
859 inline void sc_signal<sc_dt::sc_bigint<W> >::write( const sc_in<sc_dt::sc_bigint<W> >& value )
860 { base_write( value ); }
863 SC_TEMPLATE // Write a sc_inout<sc_dt::sc_bigint<W> > value to this object instance.
864 inline void sc_signal<sc_dt::sc_bigint<W> >::write( const sc_inout<sc_dt::sc_bigint<W> >& value )
865 { base_write( value ); }
868 SC_TEMPLATE // Write a sc_dt::sc_bigint<W> value to this object instance.
869 inline void sc_signal<sc_dt::sc_bigint<W> >::write( const sc_dt::sc_bigint<W>& value )
870 { base_write( value); }
873 SC_TEMPLATE // Select a portion of a value.
883 SC_TEMPLATE // Write a portion of a value. If this is the first write in
884 // a delta cycle we copy the existing value before setting the bits.
892 SC_TEMPLATE // Write a portion of a value. If this is the first write in
893 // a delta cycle we copy the existing value before setting the bits.
901 SC_TEMPLATE // Write a portion of a value. If this is the first write in
902 // a delta cycle we copy the existing value before setting the bits.
911 SC_TEMPLATE // Write a portion of a value. If this is the first write in
912 // a delta cycle we copy the existing value before setting the bits.
925 // value. This class is a specialization of the generic sc_in class to
1059 // get the value changed event
1065 // read the current value
1073 // was there a value changed event?
1193 // sc_dt::sc_bigint<W> data value. It is derived from the sc_signed_in. This class is a
1317 // get the value changed event
1323 // read the current value
1331 // was there a value changed event?
1386 // value initialization
1528 // sc_dt::sc_bigint<W> data value. This class is a derivation of sc_inout, since
1655 // 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.