#include <sc_ufixed.h>
Public メソッド | |
sc_ufixed (sc_fxnum_observer *=0) | |
sc_ufixed (const sc_fxcast_switch &, sc_fxnum_observer *=0) | |
sc_ufixed (const sc_ufixed< W, I, Q, O, N > &) | |
sc_ufixed & | operator= (const sc_ufixed< W, I, Q, O, N > &) |
const sc_fxval | operator++ (int) |
const sc_fxval | operator-- (int) |
sc_ufixed & | operator++ () |
sc_ufixed & | operator-- () |
sc_ufixed.h の 69 行で定義されています。
sc_dt::sc_ufixed< W, I, Q, O, N >::sc_ufixed | ( | sc_fxnum_observer * | observer_ = 0 |
) | [inline, explicit] |
sc_dt::sc_ufixed< W, I, Q, O, N >::sc_ufixed | ( | const sc_fxcast_switch & | cast_sw, | |
sc_fxnum_observer * | observer_ = 0 | |||
) | [inline, explicit] |
sc_dt::sc_ufixed< W, I, Q, O, N >::sc_ufixed | ( | const sc_ufixed< W, I, Q, O, N > & | a | ) | [inline] |
sc_ufixed< W, I, Q, O, N > & sc_dt::sc_ufixed< W, I, Q, O, N >::operator= | ( | const sc_ufixed< W, I, Q, O, N > & | a | ) | [inline] |
const sc_fxval sc_dt::sc_ufixed< W, I, Q, O, N >::operator++ | ( | int | ) | [inline] |
sc_dt::sc_ufixを再定義しています。
sc_ufixed.h の 441 行で定義されています。
00442 { 00443 return sc_fxval( sc_ufix::operator ++ ( 0 ) ); 00444 }
const sc_fxval sc_dt::sc_ufixed< W, I, Q, O, N >::operator-- | ( | int | ) | [inline] |
sc_dt::sc_ufixを再定義しています。
sc_ufixed.h の 449 行で定義されています。
00450 { 00451 return sc_fxval( sc_ufix::operator -- ( 0 ) ); 00452 }
sc_ufixed< W, I, Q, O, N > & sc_dt::sc_ufixed< W, I, Q, O, N >::operator++ | ( | ) | [inline] |
sc_dt::sc_ufixを再定義しています。
sc_ufixed.h の 457 行で定義されています。
00458 { 00459 sc_ufix::operator ++ (); 00460 return *this; 00461 }
sc_ufixed< W, I, Q, O, N > & sc_dt::sc_ufixed< W, I, Q, O, N >::operator-- | ( | ) | [inline] |
sc_dt::sc_ufixを再定義しています。
sc_ufixed.h の 466 行で定義されています。
00467 { 00468 sc_ufix::operator -- (); 00469 return *this; 00470 }