Lines Matching refs:sc_fxtype_params

22   sc_fxtype_params.h -
38 // $Log: sc_fxtype_params.h,v $
62 class sc_fxtype_params;
65 // CLASS : sc_fxtype_params
70 class sc_fxtype_params
73 sc_fxtype_params();
74 sc_fxtype_params(int, int);
75 sc_fxtype_params(sc_q_mode, sc_o_mode, int=0);
76 sc_fxtype_params(int, int, sc_q_mode, sc_o_mode, int=0);
77 sc_fxtype_params(const sc_fxtype_params &);
78 sc_fxtype_params(const sc_fxtype_params &, int, int);
79 sc_fxtype_params(const sc_fxtype_params&, sc_q_mode, sc_o_mode, int=0);
80 explicit sc_fxtype_params(sc_without_context);
82 sc_fxtype_params &operator = (const sc_fxtype_params &);
84 friend bool operator == (const sc_fxtype_params &,
85 const sc_fxtype_params &);
86 friend bool operator != (const sc_fxtype_params &,
87 const sc_fxtype_params &);
129 extern template class sc_global<sc_fxtype_params>;
130 extern template class sc_context<sc_fxtype_params>;
131 typedef sc_context<sc_fxtype_params> sc_fxtype_context;
136 inline sc_fxtype_params::sc_fxtype_params() :
142 inline sc_fxtype_params::sc_fxtype_params(int wl_, int iwl_) :
152 inline sc_fxtype_params::sc_fxtype_params(
164 inline sc_fxtype_params::sc_fxtype_params(
177 inline sc_fxtype_params::sc_fxtype_params(const sc_fxtype_params &a) :
182 inline sc_fxtype_params::sc_fxtype_params(
183 const sc_fxtype_params &a, int wl_, int iwl_) :
188 inline sc_fxtype_params::sc_fxtype_params(
189 const sc_fxtype_params &a, sc_q_mode q_mode_, sc_o_mode o_mode_,
195 inline sc_fxtype_params::sc_fxtype_params(sc_without_context) :
201 inline sc_fxtype_params &
202 sc_fxtype_params::operator = (const sc_fxtype_params &a)
215 operator == (const sc_fxtype_params &a, const sc_fxtype_params &b)
223 operator != (const sc_fxtype_params &a, const sc_fxtype_params &b)
230 inline int sc_fxtype_params::wl() const { return m_wl; }
232 sc_fxtype_params::wl(int wl_)
238 inline int sc_fxtype_params::iwl() const { return m_iwl; }
239 inline void sc_fxtype_params::iwl(int iwl_) { m_iwl = iwl_; }
242 inline sc_q_mode sc_fxtype_params::q_mode() const { return m_q_mode; }
243 inline void sc_fxtype_params::q_mode(sc_q_mode q_mode_) { m_q_mode = q_mode_; }
245 inline sc_o_mode sc_fxtype_params::o_mode() const { return m_o_mode; }
246 inline void sc_fxtype_params::o_mode(sc_o_mode o_mode_) { m_o_mode = o_mode_; }
248 inline int sc_fxtype_params::n_bits() const { return m_n_bits; }
250 sc_fxtype_params::n_bits(int n_bits_)
257 operator << (::std::ostream &os, const sc_fxtype_params &a)