Lines Matching defs:uint_type

112 extern const uint_type mask_int[SC_INTWIDTH][SC_INTWIDTH];
359 { return (uint64)operator uint_type(); }
380 // implicit conversion to uint_type
382 operator uint_type() const;
387 uint_type value() const
388 { return operator uint_type(); }
457 sc_uint_subref& operator = ( uint_type v );
462 { return operator = ( a.operator uint_type() ); }
465 { return operator = ( a.operator uint_type() ); }
474 { return operator = ( (uint_type) a ); }
477 { return operator = ( (uint_type) a ); }
480 { return operator = ( (uint_type) a ); }
483 { return operator = ( (uint_type) a ); }
486 { return operator = ( (uint_type) a ); }
489 { return operator = ( (uint_type) a ); }
566 sc_uint_base( uint_type v, int w )
601 sc_uint_base& operator = ( uint_type v )
645 { m_val = (uint_type) a; extend_sign(); return *this; }
650 sc_uint_base& operator += ( uint_type v )
653 sc_uint_base& operator -= ( uint_type v )
656 sc_uint_base& operator *= ( uint_type v )
659 sc_uint_base& operator /= ( uint_type v )
662 sc_uint_base& operator %= ( uint_type v )
668 sc_uint_base& operator &= ( uint_type v )
671 sc_uint_base& operator |= ( uint_type v )
674 sc_uint_base& operator ^= ( uint_type v )
678 sc_uint_base& operator <<= ( uint_type v )
681 sc_uint_base& operator >>= ( uint_type v )
793 // implicit conversion to uint_type
795 operator uint_type() const
801 uint_type value() const
802 { return operator uint_type(); }
850 uint_type m_val; // value
986 // implicit conversion to uint_type
989 sc_uint_subref_r::operator uint_type() const
991 uint_type val = m_obj_p->m_val;
1169 return operator = ( a.operator uint_type() );