Lines Matching refs:to_string

228 sc_fxnum::to_string() const
230 return std::string(m_rep->to_string(SC_DEC, -1, SC_F, &m_params));
234 sc_fxnum::to_string(sc_numrep numrep) const
236 return std::string(m_rep->to_string(numrep, -1, SC_F, &m_params));
240 sc_fxnum::to_string(sc_numrep numrep, bool w_prefix) const
242 return std::string(m_rep->to_string(numrep, (w_prefix ? 1 : 0),
247 sc_fxnum::to_string(sc_fmt fmt) const
249 return std::string(m_rep->to_string(SC_DEC, -1, fmt, &m_params));
253 sc_fxnum::to_string(sc_numrep numrep, sc_fmt fmt) const
255 return std::string(m_rep->to_string(numrep, -1, fmt, &m_params));
259 sc_fxnum::to_string(sc_numrep numrep, bool w_prefix, sc_fmt fmt) const
261 return std::string(m_rep->to_string(numrep, (w_prefix ? 1 : 0),
269 return std::string(m_rep->to_string(SC_DEC, -1, SC_F, &m_params));
275 return std::string(m_rep->to_string(SC_BIN, -1, SC_F, &m_params));
281 return std::string(m_rep->to_string(SC_OCT, -1, SC_F, &m_params));
287 return std::string(m_rep->to_string(SC_HEX, -1, SC_F, &m_params));
295 os << m_rep->to_string(SC_DEC, -1, SC_F, &m_params);
601 extern const char* to_string(const scfx_ieee_double &, sc_numrep, int, sc_fmt,
608 sc_fxnum_fast::to_string() const
610 return std::string(sc_dt::to_string(m_val, SC_DEC, -1, SC_F, &m_params));
614 sc_fxnum_fast::to_string(sc_numrep numrep) const
616 return std::string(sc_dt::to_string(m_val, numrep, -1, SC_F, &m_params));
620 sc_fxnum_fast::to_string(sc_numrep numrep, bool w_prefix) const
622 return std::string(sc_dt::to_string(m_val, numrep, (w_prefix ? 1 : 0),
627 sc_fxnum_fast::to_string(sc_fmt fmt) const
629 return std::string(sc_dt::to_string(m_val, SC_DEC, -1, fmt, &m_params));
633 sc_fxnum_fast::to_string(sc_numrep numrep, sc_fmt fmt) const
635 return std::string(sc_dt::to_string(m_val, numrep, -1, fmt, &m_params));
639 sc_fxnum_fast::to_string(sc_numrep numrep, bool w_prefix, sc_fmt fmt) const
641 return std::string(sc_dt::to_string(m_val, numrep, (w_prefix ? 1 : 0),
649 return std::string(sc_dt::to_string(m_val, SC_DEC, -1, SC_F, &m_params));
655 return std::string(sc_dt::to_string(m_val, SC_BIN, -1, SC_F, &m_params));
661 return std::string(sc_dt::to_string(m_val, SC_OCT, -1, SC_F, &m_params));
667 return std::string(sc_dt::to_string(m_val, SC_HEX, -1, SC_F, &m_params));
674 os << sc_dt::to_string(m_val, SC_DEC, -1, SC_F, &m_params);