Lines Matching defs:operator

219   	sc_unsigned_part_if& operator = ( const sc_unsigned_part_if& );
261 this_type& operator = ( const this_type& );
284 inline void operator = ( sc_dt::uint64 v );
285 inline void operator = ( const char* v );
286 inline void operator = ( unsigned long v );
287 inline void operator = ( long v );
288 inline void operator = ( unsigned int v );
289 inline void operator = ( int v );
290 inline void operator = ( sc_dt::int64 v );
291 inline void operator = ( double v );
292 inline void operator = ( const sc_unsigned_sigref& v );
294 inline void operator = ( const sc_dt::sc_generic_base<T>& v );
295 inline void operator = ( const sc_dt::sc_signed& v );
296 inline void operator = ( const sc_dt::sc_unsigned& v );
297 inline void operator = ( const sc_dt::sc_bv_base& v );
298 inline void operator = ( const sc_dt::sc_lv_base& v );
376 inline sc_unsigned_sigref& operator () ( int left, int right );
378 inline sc_unsigned_sigref& operator [] ( int bit );
381 inline void operator = ( const this_type& new_val );
382 inline void operator = ( const char* new_val );
383 inline void operator = ( sc_dt::uint64 new_val );
384 inline void operator = ( sc_dt::int64 new_val );
385 inline void operator = ( int new_val );
386 inline void operator = ( long new_val );
387 inline void operator = ( short new_val );
388 inline void operator = ( unsigned int new_val );
389 inline void operator = ( unsigned long new_val );
390 inline void operator = ( unsigned short new_val );
392 inline void operator = ( const sc_dt::sc_generic_base<T>& new_val );
393 inline void operator = ( const sc_dt::sc_signed& new_val );
394 inline void operator = ( const sc_dt::sc_unsigned& new_val );
395 inline void operator = ( const sc_dt::sc_bv_base& new_val );
396 inline void operator = ( const sc_dt::sc_lv_base& new_val );
411 sc_dt::sc_unsigned& operator ++ (); // prefix
412 const sc_dt::sc_unsigned& operator ++ (int); // postfix
413 sc_dt::sc_unsigned& operator -- (); // prefix
414 const sc_dt::sc_unsigned& operator -- (int); // postfix
415 sc_dt::sc_unsigned& operator += (const sc_dt::sc_signed& );
416 sc_dt::sc_unsigned& operator += (const sc_dt::sc_unsigned& );
417 sc_dt::sc_unsigned& operator += (sc_dt::int64 );
418 sc_dt::sc_unsigned& operator += (sc_dt::uint64 );
419 sc_dt::sc_unsigned& operator += (long );
420 sc_dt::sc_unsigned& operator += (unsigned long );
421 sc_dt::sc_unsigned& operator += (int );
422 sc_dt::sc_unsigned& operator += (unsigned int );
423 sc_dt::sc_unsigned& operator -= (const sc_dt::sc_signed& );
424 sc_dt::sc_unsigned& operator -= (const sc_dt::sc_unsigned& );
425 sc_dt::sc_unsigned& operator -= (sc_dt::int64 );
426 sc_dt::sc_unsigned& operator -= (sc_dt::uint64 );
427 sc_dt::sc_unsigned& operator -= (long );
428 sc_dt::sc_unsigned& operator -= (unsigned long );
429 sc_dt::sc_unsigned& operator -= (int );
430 sc_dt::sc_unsigned& operator -= (unsigned int );
431 sc_dt::sc_unsigned& operator *= (const sc_dt::sc_signed& );
432 sc_dt::sc_unsigned& operator *= (const sc_dt::sc_unsigned& );
433 sc_dt::sc_unsigned& operator *= (sc_dt::int64 );
434 sc_dt::sc_unsigned& operator *= (sc_dt::uint64 );
435 sc_dt::sc_unsigned& operator *= (long );
436 sc_dt::sc_unsigned& operator *= (unsigned long );
437 sc_dt::sc_unsigned& operator *= (int );
438 sc_dt::sc_unsigned& operator *= (unsigned int );
439 sc_dt::sc_unsigned& operator /= (const sc_dt::sc_signed& );
440 sc_dt::sc_unsigned& operator /= (const sc_dt::sc_unsigned& );
441 sc_dt::sc_unsigned& operator /= (sc_dt::int64 );
442 sc_dt::sc_unsigned& operator /= (sc_dt::uint64 );
443 sc_dt::sc_unsigned& operator /= (long );
444 sc_dt::sc_unsigned& operator /= (unsigned long );
445 sc_dt::sc_unsigned& operator /= (int );
446 sc_dt::sc_unsigned& operator /= (unsigned int );
447 sc_dt::sc_unsigned& operator %= (const sc_dt::sc_signed& );
448 sc_dt::sc_unsigned& operator %= (const sc_dt::sc_unsigned& );
449 sc_dt::sc_unsigned& operator %= (sc_dt::int64 );
450 sc_dt::sc_unsigned& operator %= (sc_dt::uint64 );
451 sc_dt::sc_unsigned& operator %= (long );
452 sc_dt::sc_unsigned& operator %= (unsigned long );
453 sc_dt::sc_unsigned& operator %= (int );
454 sc_dt::sc_unsigned& operator %= (unsigned int );
455 sc_dt::sc_unsigned& operator &= (const sc_dt::sc_signed& );
456 sc_dt::sc_unsigned& operator &= (const sc_dt::sc_unsigned& );
457 sc_dt::sc_unsigned& operator &= (sc_dt::int64 );
458 sc_dt::sc_unsigned& operator &= (sc_dt::uint64 );
459 sc_dt::sc_unsigned& operator &= (long );
460 sc_dt::sc_unsigned& operator &= (unsigned long );
461 sc_dt::sc_unsigned& operator &= (int );
462 sc_dt::sc_unsigned& operator &= (unsigned int );
463 sc_dt::sc_unsigned& operator |= (const sc_dt::sc_signed& );
464 sc_dt::sc_unsigned& operator |= (const sc_dt::sc_unsigned& );
465 sc_dt::sc_unsigned& operator |= (sc_dt::int64 );
466 sc_dt::sc_unsigned& operator |= (sc_dt::uint64 );
467 sc_dt::sc_unsigned& operator |= (long );
468 sc_dt::sc_unsigned& operator |= (unsigned long );
469 sc_dt::sc_unsigned& operator |= (int );
470 sc_dt::sc_unsigned& operator |= (unsigned int );
471 sc_dt::sc_unsigned& operator ^= (const sc_dt::sc_signed& );
472 sc_dt::sc_unsigned& operator ^= (const sc_dt::sc_unsigned& );
473 sc_dt::sc_unsigned& operator ^= (sc_dt::int64 );
474 sc_dt::sc_unsigned& operator ^= (sc_dt::uint64 );
475 sc_dt::sc_unsigned& operator ^= (long );
476 sc_dt::sc_unsigned& operator ^= (unsigned long );
477 sc_dt::sc_unsigned& operator ^= (int );
478 sc_dt::sc_unsigned& operator ^= (unsigned int );
657 //"sc_signal_uint::operator ()
659 // This operator returns a part selection of this object instance.
664 inline sc_unsigned_sigref& sc_signal<sc_dt::sc_biguint<W> >::operator () (int left, int right)
675 //"sc_signal_uint::operator []"
677 // This operator returns a bit selection of this object instance.
681 inline sc_unsigned_sigref& sc_signal<sc_dt::sc_biguint<W> >::operator [] ( int bit )
683 return operator () (bit,bit);
688 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( const this_type& new_val )
692 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( const char* new_val )
697 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( const sc_dt::sc_unsigned& new_val )
702 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( sc_dt::uint64 new_val )
707 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( sc_dt::int64 new_val )
712 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( int new_val )
717 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( long new_val )
722 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( short new_val )
727 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( unsigned int new_val )
732 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( unsigned long new_val )
737 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( unsigned short new_val )
743 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = (
753 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( const sc_dt::sc_signed& new_val )
757 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( const sc_dt::sc_bv_base& new_val )
761 inline void sc_signal<sc_dt::sc_biguint<W> >::operator = ( const sc_dt::sc_lv_base& new_val )
843 sc_dt::sc_unsigned::operator = (m_new_val);
950 void operator () ( const in_if_type& interface_ )
954 void operator () ( in_port_type& parent_ )
958 void operator () ( inout_port_type& parent_ )
1037 sc_dt::sc_unsigned_bitref_r operator [] ( int i ) const
1041 sc_dt::sc_unsigned_subref_r operator () ( int left, int right ) const
1066 operator const sc_dt::sc_biguint<W>& () const
1162 sc_in<sc_dt::sc_biguint<W> >& operator = ( const sc_in<sc_dt::sc_biguint<W> >& );
1177 inline std::ostream& operator << (
1217 void operator () ( const inout_if_type& interface_ )
1221 void operator () ( inout_port_type& parent_ )
1287 sc_dt::sc_unsigned_bitref_r operator [] ( int i ) const
1291 sc_unsigned_sigref& operator [] ( int i )
1295 sc_dt::sc_unsigned_subref_r operator () ( int left, int right ) const
1299 sc_unsigned_sigref& operator () ( int left, int right )
1324 operator const sc_dt::sc_biguint<W>& () const
1436 inline void operator = ( const this_type& new_val )
1438 inline void operator = ( const char* new_val )
1440 inline void operator = ( sc_dt::uint64 new_val )
1442 inline void operator = ( sc_dt::int64 new_val )
1444 inline void operator = ( int new_val )
1446 inline void operator = ( long new_val )
1448 inline void operator = ( short new_val )
1450 inline void operator = ( unsigned int new_val )
1452 inline void operator = ( unsigned long new_val )
1454 inline void operator = ( unsigned short new_val )
1457 inline void operator = ( const sc_dt::sc_generic_base<T>& new_val )
1463 inline void operator = ( const sc_dt::sc_signed& new_val )
1465 inline void operator = ( const sc_dt::sc_unsigned& new_val )
1467 inline void operator = ( const sc_dt::sc_bv_base& new_val )
1469 inline void operator = ( const sc_dt::sc_lv_base& new_val )
1513 inline std::ostream& operator << (
1587 inline void operator = ( const this_type& new_val )
1589 inline void operator = ( const char* new_val )
1591 inline void operator = ( sc_dt::uint64 new_val )
1593 inline void operator = ( sc_dt::int64 new_val )
1595 inline void operator = ( int new_val )
1597 inline void operator = ( long new_val )
1599 inline void operator = ( short new_val )
1601 inline void operator = ( unsigned int new_val )
1603 inline void operator = ( unsigned long new_val )
1605 inline void operator = ( unsigned short new_val )
1608 inline void operator = ( const sc_dt::sc_generic_base<T>& new_val )
1614 inline void operator = ( const sc_dt::sc_signed& new_val )
1616 inline void operator = ( const sc_dt::sc_unsigned& new_val )
1618 inline void operator = ( const sc_dt::sc_bv_base& new_val )
1620 inline void operator = ( const sc_dt::sc_lv_base& new_val )
1650 //"sc_unsigned_sigref::operator ="
1655 inline void sc_unsigned_sigref::operator = ( sc_dt::uint64 v )
1660 inline void sc_unsigned_sigref::operator = ( const char* v )
1667 inline void sc_unsigned_sigref:: operator = ( sc_dt::int64 v )
1672 inline void sc_unsigned_sigref:: operator = ( int v )
1677 inline void sc_unsigned_sigref:: operator = ( long v )
1682 inline void sc_unsigned_sigref:: operator = ( unsigned int v )
1687 inline void sc_unsigned_sigref:: operator = ( unsigned long v )
1692 void sc_unsigned_sigref::operator = ( const sc_unsigned_sigref& v )
1698 inline void sc_unsigned_sigref:: operator = ( const sc_dt::sc_signed& v )
1703 inline void sc_unsigned_sigref:: operator = ( const sc_dt::sc_unsigned& v )
1709 inline void sc_unsigned_sigref:: operator = (