Lines Matching refs:numrep
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),
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),
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),
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),