Lines Matching refs:src

274     virtual void concat_set(sc_dt::int64 src, int low_i);
275 virtual void concat_set(const sc_dt::sc_signed& src, int low_i);
276 virtual void concat_set(const sc_dt::sc_unsigned& src, int low_i);
277 virtual void concat_set(const sc_dt::sc_lv_base& src, int low_i);
278 virtual void concat_set(sc_dt::uint64 src, int low_i);
400 virtual inline void concat_set(sc_dt::int64 src, int low_i);
401 virtual inline void concat_set(const sc_dt::sc_lv_base& src, int low_i);
402 virtual inline void concat_set(const sc_dt::sc_signed& src, int low_i);
403 virtual inline void concat_set(const sc_dt::sc_unsigned& src, int low_i);
404 virtual inline void concat_set(sc_dt::uint64 src, int low_i);
581 // src = source value.
582 // low_i = bit within src to serve as low order bit of this object
586 inline void sc_signal<sc_dt::sc_biguint<W> >::concat_set(sc_dt::int64 src, int low_i)
590 base_write(src >> low_i);
594 base_write( (sc_dt::int64)((src < 0 ) ? -1 : 0 ));
600 const sc_dt::sc_lv_base& src, int low_i)
602 sc_dt::sc_unsigned tmp(src.length());
603 tmp = src >> low_i;
609 const sc_dt::sc_signed& src, int low_i)
611 base_write( (src >> low_i) );
616 const sc_dt::sc_unsigned& src, int low_i)
618 base_write( (src >> low_i) );
622 inline void sc_signal<sc_dt::sc_biguint<W> >::concat_set(sc_dt::uint64 src, int low_i)
624 base_write( (sc_dt::uint64)(( low_i < 64 ) ? src >> low_i : 0));
1420 virtual inline void concat_set(sc_dt::int64 src, int low_i)
1421 { *this = (src >> ((low_i < 64) ? low_i : 63)); }
1423 virtual inline void concat_set(const sc_dt::sc_lv_base& src, int low_i)
1424 { *this = src >> low_i; }
1426 virtual inline void concat_set(const sc_dt::sc_signed& src, int low_i)
1427 { *this = (src >> low_i); }
1428 virtual inline void concat_set(const sc_dt::sc_unsigned& src, int low_i)
1429 { *this = (src >> low_i); }
1430 virtual inline void concat_set(sc_dt::uint64 src, int low_i)
1431 { *this = (low_i < 64 ) ? src >> low_i : (sc_dt::uint64)0; }
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.
1789 void sc_unsigned_sigref::concat_set(sc_dt::int64 src, int low_i)
1793 tmp = src >> low_i;
1795 tmp = (src < 0) ? -1 : 0;
1800 void sc_unsigned_sigref::concat_set(const sc_dt::sc_signed& src, int low_i)
1802 m_if_p->write_part( src >> low_i, m_left, m_right );
1806 void sc_unsigned_sigref::concat_set(const sc_dt::sc_lv_base& src, int low_i)
1808 sc_dt::sc_unsigned tmp(src.length());
1809 tmp = src;
1814 void sc_unsigned_sigref::concat_set(const sc_dt::sc_unsigned& src, int low_i)
1816 m_if_p->write_part( src >> low_i, m_left, m_right );
1820 void sc_unsigned_sigref::concat_set(sc_dt::uint64 src, int low_i)
1822 sc_dt::uint64 tmp = (low_i < 63) ? (src >> low_i) : 0;