Lines Matching refs:to_string

68 sc_fxval::to_string() const
70 return std::string( m_rep->to_string( SC_DEC, -1, SC_E ) );
74 sc_fxval::to_string( sc_numrep numrep ) const
76 return std::string( m_rep->to_string( numrep, -1, SC_E ) );
80 sc_fxval::to_string( sc_numrep numrep, bool w_prefix ) const
82 return std::string( m_rep->to_string( numrep, (w_prefix ? 1 : 0), SC_E ) );
86 sc_fxval::to_string( sc_fmt fmt ) const
88 return std::string( m_rep->to_string( SC_DEC, -1, fmt ) );
92 sc_fxval::to_string( sc_numrep numrep, sc_fmt fmt ) const
94 return std::string( m_rep->to_string( numrep, -1, fmt ) );
98 sc_fxval::to_string( sc_numrep numrep, bool w_prefix, sc_fmt fmt ) const
100 return std::string( m_rep->to_string( numrep, (w_prefix ? 1 : 0), fmt ) );
107 return std::string( m_rep->to_string( SC_DEC, -1, SC_E ) );
113 return std::string( m_rep->to_string( SC_BIN, -1, SC_E ) );
119 return std::string( m_rep->to_string( SC_OCT, -1, SC_E ) );
125 return std::string( m_rep->to_string( SC_HEX, -1, SC_E ) );
482 to_string( const scfx_ieee_double& id, sc_numrep numrep, int w_prefix,
510 sc_fxval_fast::to_string() const
512 return std::string( sc_dt::to_string( m_val, SC_DEC, -1, SC_E ) );
516 sc_fxval_fast::to_string( sc_numrep numrep ) const
518 return std::string( sc_dt::to_string( m_val, numrep, -1, SC_E ) );
522 sc_fxval_fast::to_string( sc_numrep numrep, bool w_prefix ) const
524 return std::string( sc_dt::to_string( m_val, numrep, (w_prefix ? 1 : 0),
529 sc_fxval_fast::to_string( sc_fmt fmt ) const
531 return std::string( sc_dt::to_string( m_val, SC_DEC, -1, fmt ) );
535 sc_fxval_fast::to_string( sc_numrep numrep, sc_fmt fmt ) const
537 return std::string( sc_dt::to_string( m_val, numrep, -1, fmt ) );
541 sc_fxval_fast::to_string( sc_numrep numrep, bool w_prefix, sc_fmt fmt ) const
543 return std::string( sc_dt::to_string( m_val, numrep, (w_prefix ? 1 : 0),
551 return std::string( sc_dt::to_string( m_val, SC_DEC, -1, SC_E ) );
557 return std::string( sc_dt::to_string( m_val, SC_BIN, -1, SC_E ) );
563 return std::string( sc_dt::to_string( m_val, SC_OCT, -1, SC_E ) );
569 return std::string( sc_dt::to_string( m_val, SC_HEX, -1, SC_E ) );
578 os << sc_dt::to_string( m_val, SC_DEC, -1, SC_E );