Lines Matching refs:fmt
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
262 fmt, &m_params));
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
642 fmt, &m_params));