Lines Matching defs:sc_unsigned

67 //  mirror those of sc_unsigned. For instance, an sc_unsigned minus a value
69 // returning an sc_unsigned result. Now both sc_unsigned and sc_concatref
88 #include "sysc/datatypes/int/sc_unsigned.h"
203 virtual void concat_set( const sc_unsigned& src, int low_i )
238 const sc_unsigned& value() const
241 sc_unsigned* result_p = sc_unsigned::m_pool.allocate();
281 void to_sc_unsigned( sc_unsigned& target ) const
289 operator const sc_unsigned& () const
294 sc_unsigned operator + () const
300 sc_unsigned operator ~ () const
359 sc_unsigned temp(v.length());
373 const sc_concatref& operator = ( const sc_unsigned& v )
382 sc_unsigned v(m_len);
391 sc_unsigned temp(v.length());
400 sc_unsigned data(v.length());
510 // Because sc_concatref has implicit casts to both uint64 and sc_unsigned
512 // this in favor of sc_unsigned so that precision is not lost. To get an
515 inline const sc_unsigned operator << (const sc_concatref& target, uint64 shift)
520 inline const sc_unsigned operator << (const sc_concatref& target, int64 shift)
525 inline const sc_unsigned operator << (
531 inline const sc_unsigned operator << (
537 inline const sc_unsigned operator << (
543 inline const sc_unsigned operator << ( const sc_concatref& target, long shift )
548 inline const sc_unsigned operator >> (const sc_concatref& target, uint64 shift)
553 inline const sc_unsigned operator >> (const sc_concatref& target, int64 shift)
558 inline const sc_unsigned operator >> (
564 inline const sc_unsigned operator >> (
570 inline const sc_unsigned operator >> (
576 inline const sc_unsigned operator >> ( const sc_concatref& target, long shift )
595 sc_unsigned temp(a.concat_length(0));
699 SC_CONCAT_OP_TYPE(RESULT,OP,const sc_unsigned&) \
723 SC_CONCAT_OP_TYPE(bool,OP,const sc_unsigned&) \
733 SC_CONCAT_OP(const sc_unsigned,+)
735 SC_CONCAT_OP(const sc_unsigned,*)
736 SC_CONCAT_OP(const sc_unsigned,/)
737 SC_CONCAT_OP(const sc_unsigned,%)
738 SC_CONCAT_OP(const sc_unsigned,&)
739 SC_CONCAT_OP(const sc_unsigned,|)
740 SC_CONCAT_OP(const sc_unsigned,^)