Lines Matching defs:operator

122     sc_ufixed& operator = ( const sc_ufixed<W,I,Q,O,N>& );
125 sc_ufixed& operator op ( tp );
177 const sc_fxval operator ++ ( int );
178 const sc_fxval operator -- ( int );
180 sc_ufixed& operator ++ ();
181 sc_ufixed& operator -- ();
246 sc_ufixed_fast& operator = ( const sc_ufixed_fast<W,I,Q,O,N>& );
249 sc_ufixed_fast& operator op ( tp );
301 const sc_fxval_fast operator ++ ( int );
302 const sc_fxval_fast operator -- ( int );
304 sc_ufixed_fast& operator ++ ();
305 sc_ufixed_fast& operator -- ();
383 sc_ufixed<W,I,Q,O,N>::operator = ( const sc_ufixed<W,I,Q,O,N>& a )
385 sc_ufix::operator = ( a );
393 sc_ufixed<W,I,Q,O,N>::operator op ( tp a ) \
395 sc_ufix::operator op ( a ); \
452 sc_ufixed<W,I,Q,O,N>::operator ++ ( int )
454 return sc_fxval( sc_ufix::operator ++ ( 0 ) );
460 sc_ufixed<W,I,Q,O,N>::operator -- ( int )
462 return sc_fxval( sc_ufix::operator -- ( 0 ) );
468 sc_ufixed<W,I,Q,O,N>::operator ++ ()
470 sc_ufix::operator ++ ();
477 sc_ufixed<W,I,Q,O,N>::operator -- ()
479 sc_ufix::operator -- ();
555 sc_ufixed_fast<W,I,Q,O,N>::operator = ( const sc_ufixed_fast<W,I,Q,O,N>& a )
557 sc_ufix_fast::operator = ( a );
565 sc_ufixed_fast<W,I,Q,O,N>::operator op ( tp a ) \
567 sc_ufix_fast::operator op ( a ); \
624 sc_ufixed_fast<W,I,Q,O,N>::operator ++ ( int )
626 return sc_fxval_fast( sc_ufix_fast::operator ++ ( 0 ) );
632 sc_ufixed_fast<W,I,Q,O,N>::operator -- ( int )
634 return sc_fxval_fast( sc_ufix_fast::operator -- ( 0 ) );
640 sc_ufixed_fast<W,I,Q,O,N>::operator ++ ()
642 sc_ufix_fast::operator ++ ();
649 sc_ufixed_fast<W,I,Q,O,N>::operator -- ()
651 sc_ufix_fast::operator -- ();