Lines Matching refs:sc_uint_base

120 class sc_uint_base;
214 sc_signed operator + (const sc_signed &u, const sc_uint_base &v);
216 sc_signed operator + (const sc_uint_base &u, const sc_signed &v);
255 sc_signed operator - (const sc_unsigned &u, const sc_uint_base &v);
257 sc_signed operator - (const sc_uint_base &u, const sc_unsigned &v);
259 sc_signed operator - (const sc_signed &u, const sc_uint_base &v);
261 sc_signed operator - (const sc_uint_base &u, const sc_signed &v);
294 sc_signed operator * (const sc_signed &u, const sc_uint_base &v);
296 sc_signed operator * (const sc_uint_base &u, const sc_signed &v);
329 sc_signed operator / (const sc_signed &u, const sc_uint_base &v);
331 sc_signed operator / (const sc_uint_base &u, const sc_signed &v);
364 sc_signed operator % (const sc_signed &u, const sc_uint_base &v);
366 sc_signed operator % (const sc_uint_base &u, const sc_signed &v);
401 sc_signed operator & (const sc_signed &u, const sc_uint_base &v);
403 sc_signed operator & (const sc_uint_base &u, const sc_signed &v);
436 sc_signed operator | (const sc_signed &u, const sc_uint_base &v);
438 sc_signed operator | (const sc_uint_base &u, const sc_signed &v);
471 sc_signed operator ^ (const sc_signed &u, const sc_uint_base &v);
473 sc_signed operator ^ (const sc_uint_base &u, const sc_signed &v);
490 sc_signed operator << (const sc_signed &u, const sc_uint_base &v);
506 sc_signed operator >> (const sc_signed &u, const sc_uint_base &v);
537 bool operator == (const sc_signed &u, const sc_uint_base &v);
539 bool operator == (const sc_uint_base &u, const sc_signed &v);
561 bool operator != (const sc_signed &u, const sc_uint_base &v);
563 bool operator != (const sc_uint_base &u, const sc_signed &v);
585 bool operator < (const sc_signed &u, const sc_uint_base &v);
587 bool operator < (const sc_uint_base &u, const sc_signed &v);
609 bool operator <= (const sc_signed &u, const sc_uint_base &v);
611 bool operator <= (const sc_uint_base &u, const sc_signed &v);
633 bool operator > (const sc_signed &u, const sc_uint_base &v);
635 bool operator > (const sc_uint_base &u, const sc_signed &v);
657 bool operator >= (const sc_signed &u, const sc_uint_base &v);
659 bool operator >= (const sc_uint_base &u, const sc_signed &v);
960 const sc_signed_subref &operator = (const sc_uint_base &a);
1044 const sc_signed &operator = (const sc_uint_base & v);
1363 friend sc_signed operator + (const sc_signed &u, const sc_uint_base &v);
1365 friend sc_signed operator + (const sc_uint_base &u, const sc_signed &v);
1367 const sc_signed & operator += (const sc_uint_base &v);
1453 friend sc_signed operator - (const sc_unsigned &u, const sc_uint_base &v);
1455 friend sc_signed operator - (const sc_uint_base &u, const sc_unsigned &v);
1457 friend sc_signed operator - (const sc_signed &u, const sc_uint_base &v);
1459 friend sc_signed operator - (const sc_uint_base &u, const sc_signed &v);
1461 const sc_signed &operator -= (const sc_uint_base &v);
1534 friend sc_signed operator * (const sc_signed &u, const sc_uint_base &v);
1536 friend sc_signed operator * (const sc_uint_base &u, const sc_signed &v);
1538 const sc_signed &operator *= (const sc_uint_base &v);
1611 friend sc_signed operator / (const sc_signed &u, const sc_uint_base &v);
1613 friend sc_signed operator / (const sc_uint_base &u, const sc_signed &v);
1615 const sc_signed &operator /= (const sc_uint_base &v);
1688 friend sc_signed operator % (const sc_signed &u, const sc_uint_base &v);
1690 friend sc_signed operator % (const sc_uint_base &u, const sc_signed &v);
1692 const sc_signed &operator %= (const sc_uint_base &v);
1761 friend sc_signed operator & (const sc_signed &u, const sc_uint_base &v);
1763 friend sc_signed operator & (const sc_uint_base &u, const sc_signed &v);
1765 const sc_signed &operator &= (const sc_uint_base &v);
1838 friend sc_signed operator | (const sc_signed &u, const sc_uint_base &v);
1840 friend sc_signed operator | (const sc_uint_base &u, const sc_signed &v);
1842 const sc_signed &operator |= (const sc_uint_base &v);
1915 friend sc_signed operator ^ (const sc_signed &u, const sc_uint_base &v);
1917 friend sc_signed operator ^ (const sc_uint_base &u, const sc_signed &v);
1919 const sc_signed &operator ^= (const sc_uint_base &v);
1961 friend sc_signed operator << (const sc_signed &u, const sc_uint_base &v);
1963 const sc_signed &operator <<= (const sc_uint_base &v);
2003 friend sc_signed operator >> (const sc_signed &u, const sc_uint_base &v);
2005 const sc_signed &operator >>= (const sc_uint_base &v);
2050 friend bool operator == (const sc_signed &u, const sc_uint_base &v);
2052 friend bool operator == (const sc_uint_base &u, const sc_signed &v);
2090 friend bool operator != (const sc_signed &u, const sc_uint_base &v);
2092 friend bool operator != (const sc_uint_base &u, const sc_signed &v);
2124 friend bool operator < (const sc_signed &u, const sc_uint_base &v);
2126 friend bool operator < (const sc_uint_base &u, const sc_signed &v);
2164 friend bool operator <= (const sc_signed &u, const sc_uint_base &v);
2166 friend bool operator <= (const sc_uint_base &u, const sc_signed &v);
2204 friend bool operator > (const sc_signed &u, const sc_uint_base &v);
2206 friend bool operator > (const sc_uint_base &u, const sc_signed &v);
2244 friend bool operator >= (const sc_signed &u, const sc_uint_base &v);
2246 friend bool operator >= (const sc_uint_base &u, const sc_signed &v);