Lines Matching defs:operator

196     sc_biguint<W>& operator = ( const sc_biguint<W>& v )
197 { sc_unsigned::operator = ( v ); return *this; }
199 sc_biguint<W>& operator = ( const sc_unsigned& v )
200 { sc_unsigned::operator = ( v ); return *this; }
202 sc_biguint<W>& operator = ( const sc_unsigned_subref& v )
203 { sc_unsigned::operator = ( v ); return *this; }
206 sc_biguint<W>& operator = ( const sc_generic_base<T>& a )
209 sc_biguint<W>& operator = ( const sc_signed& v )
210 { sc_unsigned::operator = ( v ); return *this; }
212 sc_biguint<W>& operator = ( const sc_signed_subref& v )
213 { sc_unsigned::operator = ( v ); return *this; }
215 sc_biguint<W>& operator = ( const char* v )
216 { sc_unsigned::operator = ( v ); return *this; }
218 sc_biguint<W>& operator = ( int64 v )
219 { sc_unsigned::operator = ( v ); return *this; }
221 sc_biguint<W>& operator = ( uint64 v )
222 { sc_unsigned::operator = ( v ); return *this; }
224 sc_biguint<W>& operator = ( long v )
225 { sc_unsigned::operator = ( v ); return *this; }
227 sc_biguint<W>& operator = ( unsigned long v )
228 { sc_unsigned::operator = ( v ); return *this; }
230 sc_biguint<W>& operator = ( int v )
231 { sc_unsigned::operator = ( v ); return *this; }
233 sc_biguint<W>& operator = ( unsigned int v )
234 { sc_unsigned::operator = ( v ); return *this; }
236 sc_biguint<W>& operator = ( double v )
237 { sc_unsigned::operator = ( v ); return *this; }
240 sc_biguint<W>& operator = ( const sc_bv_base& v )
241 { sc_unsigned::operator = ( v ); return *this; }
243 sc_biguint<W>& operator = ( const sc_lv_base& v )
244 { sc_unsigned::operator = ( v ); return *this; }
246 sc_biguint<W>& operator = ( const sc_int_base& v )
247 { sc_unsigned::operator = ( v ); return *this; }
249 sc_biguint<W>& operator = ( const sc_uint_base& v )
250 { sc_unsigned::operator = ( v ); return *this; }
254 sc_biguint<W>& operator = ( const sc_fxval& v )
255 { sc_unsigned::operator = ( v ); return *this; }
257 sc_biguint<W>& operator = ( const sc_fxval_fast& v )
258 { sc_unsigned::operator = ( v ); return *this; }
260 sc_biguint<W>& operator = ( const sc_fxnum& v )
261 { sc_unsigned::operator = ( v ); return *this; }
263 sc_biguint<W>& operator = ( const sc_fxnum_fast& v )
264 { sc_unsigned::operator = ( v ); return *this; }