Lines Matching refs:sc_int_base

119 class sc_int_base;
211 sc_signed operator + (const sc_unsigned &u, const sc_int_base &v);
212 sc_signed operator + (const sc_int_base &u, const sc_unsigned &v);
213 sc_signed operator + (const sc_signed &u, const sc_int_base &v);
215 sc_signed operator + (const sc_int_base &u, const sc_signed &v);
254 sc_signed operator - (const sc_unsigned &u, const sc_int_base &v);
256 sc_signed operator - (const sc_int_base &u, const sc_unsigned &v);
258 sc_signed operator - (const sc_signed &u, const sc_int_base &v);
260 sc_signed operator - (const sc_int_base &u, const sc_signed &v);
291 sc_signed operator * (const sc_unsigned &u, const sc_int_base &v);
292 sc_signed operator * (const sc_int_base &u, const sc_unsigned &v);
293 sc_signed operator * (const sc_signed &u, const sc_int_base &v);
295 sc_signed operator * (const sc_int_base &u, const sc_signed &v);
326 sc_signed operator / (const sc_unsigned &u, const sc_int_base &v);
327 sc_signed operator / (const sc_int_base &u, const sc_unsigned &v);
328 sc_signed operator / (const sc_signed &u, const sc_int_base &v);
330 sc_signed operator / (const sc_int_base &u, const sc_signed &v);
361 sc_signed operator % (const sc_unsigned &u, const sc_int_base &v);
362 sc_signed operator % (const sc_int_base &u, const sc_unsigned &v);
363 sc_signed operator % (const sc_signed &u, const sc_int_base &v);
365 sc_signed operator % (const sc_int_base &u, const sc_signed &v);
398 sc_signed operator & (const sc_unsigned &u, const sc_int_base &v);
399 sc_signed operator & (const sc_int_base &u, const sc_unsigned &v);
400 sc_signed operator & (const sc_signed &u, const sc_int_base &v);
402 sc_signed operator & (const sc_int_base &u, const sc_signed &v);
433 sc_signed operator | (const sc_unsigned &u, const sc_int_base &v);
434 sc_signed operator | (const sc_int_base &u, const sc_unsigned &v);
435 sc_signed operator | (const sc_signed &u, const sc_int_base &v);
437 sc_signed operator | (const sc_int_base &u, const sc_signed &v);
468 sc_signed operator ^ (const sc_unsigned &u, const sc_int_base &v);
469 sc_signed operator ^ (const sc_int_base &u, const sc_unsigned &v);
470 sc_signed operator ^ (const sc_signed &u, const sc_int_base &v);
472 sc_signed operator ^ (const sc_int_base &u, const sc_signed &v);
489 sc_signed operator << (const sc_signed &u, const sc_int_base &v);
505 sc_signed operator >> (const sc_signed &u, const sc_int_base &v);
536 bool operator == (const sc_signed &u, const sc_int_base &v);
538 bool operator == (const sc_int_base &u, const sc_signed &v);
560 bool operator != (const sc_signed &u, const sc_int_base &v);
562 bool operator != (const sc_int_base &u, const sc_signed &v);
584 bool operator < (const sc_signed &u, const sc_int_base &v);
586 bool operator < (const sc_int_base &u, const sc_signed &v);
608 bool operator <= (const sc_signed &u, const sc_int_base &v);
610 bool operator <= (const sc_int_base &u, const sc_signed &v);
632 bool operator > (const sc_signed &u, const sc_int_base &v);
634 bool operator > (const sc_int_base &u, const sc_signed &v);
656 bool operator >= (const sc_signed &u, const sc_int_base &v);
658 bool operator >= (const sc_int_base &u, const sc_signed &v);
959 const sc_signed_subref &operator = (const sc_int_base &a);
1043 const sc_signed &operator = (const sc_int_base & v);
1360 friend sc_signed operator + (const sc_unsigned &u, const sc_int_base &v);
1361 friend sc_signed operator + (const sc_int_base &u, const sc_unsigned &v);
1362 friend sc_signed operator + (const sc_signed &u, const sc_int_base &v);
1364 friend sc_signed operator + (const sc_int_base &u, const sc_signed &v);
1366 const sc_signed & operator += (const sc_int_base &v);
1452 friend sc_signed operator - (const sc_unsigned &u, const sc_int_base &v);
1454 friend sc_signed operator - (const sc_int_base &u, const sc_unsigned &v);
1456 friend sc_signed operator - (const sc_signed &u, const sc_int_base &v);
1458 friend sc_signed operator - (const sc_int_base &u, const sc_signed &v);
1460 const sc_signed &operator -= (const sc_int_base &v);
1531 friend sc_signed operator * (const sc_unsigned &u, const sc_int_base &v);
1532 friend sc_signed operator * (const sc_int_base &u, const sc_unsigned &v);
1533 friend sc_signed operator * (const sc_signed &u, const sc_int_base &v);
1535 friend sc_signed operator * (const sc_int_base &u, const sc_signed &v);
1537 const sc_signed &operator *= (const sc_int_base &v);
1608 friend sc_signed operator / (const sc_unsigned &u, const sc_int_base &v);
1609 friend sc_signed operator / (const sc_int_base &u, const sc_unsigned &v);
1610 friend sc_signed operator / (const sc_signed &u, const sc_int_base &v);
1612 friend sc_signed operator / (const sc_int_base &u, const sc_signed &v);
1614 const sc_signed &operator /= (const sc_int_base &v);
1685 friend sc_signed operator % (const sc_unsigned &u, const sc_int_base &v);
1686 friend sc_signed operator % (const sc_int_base &u, const sc_unsigned &v);
1687 friend sc_signed operator % (const sc_signed &u, const sc_int_base &v);
1689 friend sc_signed operator % (const sc_int_base &u, const sc_signed &v);
1691 const sc_signed &operator %= (const sc_int_base &v);
1758 friend sc_signed operator & (const sc_unsigned &u, const sc_int_base &v);
1759 friend sc_signed operator & (const sc_int_base &u, const sc_unsigned &v);
1760 friend sc_signed operator & (const sc_signed &u, const sc_int_base &v);
1762 friend sc_signed operator & (const sc_int_base &u, const sc_signed &v);
1764 const sc_signed &operator &= (const sc_int_base &v);
1835 friend sc_signed operator | (const sc_unsigned &u, const sc_int_base &v);
1836 friend sc_signed operator | (const sc_int_base &u, const sc_unsigned &v);
1837 friend sc_signed operator | (const sc_signed &u, const sc_int_base &v);
1839 friend sc_signed operator | (const sc_int_base &u, const sc_signed &v);
1841 const sc_signed &operator |= (const sc_int_base &v);
1912 friend sc_signed operator ^ (const sc_unsigned &u, const sc_int_base &v);
1913 friend sc_signed operator ^ (const sc_int_base &u, const sc_unsigned &v);
1914 friend sc_signed operator ^ (const sc_signed &u, const sc_int_base &v);
1916 friend sc_signed operator ^ (const sc_int_base &u, const sc_signed &v);
1918 const sc_signed &operator ^= (const sc_int_base &v);
1960 friend sc_signed operator << (const sc_signed &u, const sc_int_base &v);
1962 const sc_signed &operator <<= (const sc_int_base &v);
2002 friend sc_signed operator >> (const sc_signed &u, const sc_int_base &v);
2004 const sc_signed &operator >>= (const sc_int_base &v);
2049 friend bool operator == (const sc_signed &u, const sc_int_base &v);
2051 friend bool operator == (const sc_int_base &u, const sc_signed &v);
2089 friend bool operator != (const sc_signed &u, const sc_int_base &v);
2091 friend bool operator != (const sc_int_base &u, const sc_signed &v);
2123 friend bool operator < (const sc_signed &u, const sc_int_base &v);
2125 friend bool operator < (const sc_int_base &u, const sc_signed &v);
2163 friend bool operator <= (const sc_signed &u, const sc_int_base &v);
2165 friend bool operator <= (const sc_int_base &u, const sc_signed &v);
2203 friend bool operator > (const sc_signed &u, const sc_int_base &v);
2205 friend bool operator > (const sc_int_base &u, const sc_signed &v);
2243 friend bool operator >= (const sc_signed &u, const sc_int_base &v);
2245 friend bool operator >= (const sc_int_base &u, const sc_signed &v);