Lines Matching defs:const

74 sc_time::sc_time(const sc_time &t)
79 sc_time::sc_time(double d, const char *unit)
110 sc_time::operator = (const sc_time &t)
117 sc_time::value() const
123 sc_time::to_double() const
128 sc_time::to_seconds() const
133 const std::string
134 sc_time::to_string() const
142 sc_time::operator == (const sc_time &t) const
148 sc_time::operator != (const sc_time &t) const
154 sc_time::operator < (const sc_time &t) const
160 sc_time::operator <= (const sc_time &t) const
166 sc_time::operator > (const sc_time &t) const
172 sc_time::operator >= (const sc_time &t) const
178 sc_time::operator += (const sc_time &t)
185 sc_time::operator -= (const sc_time &t)
206 sc_time::print(std::ostream &os) const
230 sc_time::from_string(const char *str)
246 const sc_time
247 operator + (const sc_time &a, const sc_time &b)
252 const sc_time
253 operator - (const sc_time &a, const sc_time &b)
258 const sc_time
259 operator * (const sc_time &t, double d)
265 const sc_time
266 operator * (double d, const sc_time &t)
272 const sc_time
273 operator / (const sc_time &t, double d)
280 operator / (const sc_time &t1, const sc_time &t2)
286 operator << (std::ostream &os, const sc_time &t)
292 const sc_time SC_ZERO_TIME;
346 const sc_time &
349 static const sc_time MaxScTime = sc_time::from_value(MaxTick);
397 sc_time_tuple::sc_time_tuple(const sc_time &t) :
433 sc_time_tuple::has_value() const
438 sc_dt::uint64 sc_time_tuple::value() const { return _value; }
440 const char *
441 sc_time_tuple::unit_symbol() const
446 double sc_time_tuple::to_double() const { return static_cast<double>(_value); }
449 sc_time_tuple::to_string() const