Lines Matching defs:operator

148     const sc_ufix operator ~ () const;
154 friend const sc_ufix operator & (const sc_ufix &, const sc_ufix &);
155 friend const sc_ufix operator & (const sc_ufix &, const sc_ufix_fast &);
156 friend const sc_ufix operator & (const sc_ufix_fast &, const sc_ufix &);
157 friend const sc_ufix operator | (const sc_ufix &, const sc_ufix &);
158 friend const sc_ufix operator | (const sc_ufix &, const sc_ufix_fast &);
159 friend const sc_ufix operator | (const sc_ufix_fast &, const sc_ufix &);
160 friend const sc_ufix operator ^ (const sc_ufix &, const sc_ufix &);
161 friend const sc_ufix operator ^ (const sc_ufix &, const sc_ufix_fast &);
162 friend const sc_ufix operator ^ (const sc_ufix_fast &, const sc_ufix &);
176 sc_ufix &operator = (const sc_ufix &);
178 #define DECL_ASN_OP_T(op,tp) sc_ufix &operator op (tp);
224 const sc_fxval operator ++ (int);
225 const sc_fxval operator -- (int);
227 sc_ufix& operator ++ ();
228 sc_ufix& operator -- ();
324 const sc_ufix_fast operator ~ () const;
332 friend const sc_ufix_fast operator & (const sc_ufix_fast &,
334 friend const sc_ufix_fast operator ^ (const sc_ufix_fast &,
336 friend const sc_ufix_fast operator | (const sc_ufix_fast &,
350 sc_ufix_fast &operator = (const sc_ufix_fast &);
352 #define DECL_ASN_OP_T(op,tp) sc_ufix_fast &operator op (tp);
398 const sc_fxval_fast operator ++ (int);
399 const sc_fxval_fast operator -- (int);
401 sc_ufix_fast &operator ++ ();
402 sc_ufix_fast &operator -- ();
698 sc_ufix::operator ~ () const
724 operator op (const tp1 &a, const tp2 &b) \
782 sc_ufix::operator = (const sc_ufix &a)
784 sc_fxnum::operator = (a);
790 sc_ufix::operator op (tp a) \
792 sc_fxnum::operator op(a); \
835 sc_ufix::operator op (const tp &b) \
858 sc_ufix::operator ++ (int)
860 return sc_fxval(sc_fxnum::operator ++ (0));
864 sc_ufix::operator -- (int)
866 return sc_fxval(sc_fxnum::operator -- (0));
870 sc_ufix::operator ++ ()
872 sc_fxnum::operator ++ ();
877 sc_ufix::operator -- ()
879 sc_fxnum::operator -- ();
1184 sc_ufix_fast::operator ~ () const
1210 operator op (const tp1 &a, const tp2 &b) \
1252 sc_ufix_fast::operator = (const sc_ufix_fast &a)
1254 sc_fxnum_fast::operator = (a);
1260 sc_ufix_fast::operator op (tp a) \
1262 sc_fxnum_fast::operator op(a); \
1304 sc_ufix_fast::operator op (const tp &b) \
1327 sc_ufix_fast::operator ++ (int)
1329 return sc_fxval_fast(sc_fxnum_fast::operator ++ (0));
1333 sc_ufix_fast::operator -- (int)
1335 return sc_fxval_fast(sc_fxnum_fast::operator -- (0));
1339 sc_ufix_fast::operator ++ ()
1341 sc_fxnum_fast::operator ++ ();
1346 sc_ufix_fast::operator -- ()
1348 sc_fxnum_fast::operator -- ();