Lines Matching defs:native_float

477 class native_float
490 native_float()
492 native_float(long l)
494 native_float(const char *s)
496 native_float(const native_float &b)
499 const native_float& operator= (long l)
501 const native_float& operator= (const char *s)
503 const native_float& operator= (const native_float &b)
506 const native_float& operator+= (const native_float &b)
511 const native_float& operator-= (const native_float &b)
516 const native_float& operator*= (const native_float &b)
521 const native_float& operator/= (const native_float &b)
527 native_float operator- () const
529 native_float r;
533 native_float abs () const
535 native_float r;
540 bool operator < (const native_float &b) const
542 bool operator <= (const native_float &b) const
544 bool operator == (const native_float &b) const
546 bool operator != (const native_float &b) const
548 bool operator >= (const native_float &b) const
550 bool operator > (const native_float &b) const
563 native_float<T>::from_str (const char *s)
570 native_float<float>::from_str (const char *s)
577 native_float<double>::from_str (const char *s)
584 native_float<T>::do_abs (T image)
591 native_float<float>::do_abs (float image)
598 native_float<double>::do_abs (double image)
605 native_float<T>::verbose_binop (T a, char symbol, T b, T r)
625 native_float<T>::verbose_unop (const char *symbol, T a, T r)
643 native_float<T>::verbose_cmp (T a, const char *symbol, T b, bool r)
663 native_float<T>::str() const
677 native_float<T>::hex() const
691 native_float<T>::exp() const
700 native_float<T>::ldexp (int exp)
707 native_float<float>::ldexp (int exp)
714 native_float<double>::ldexp (int exp)
2677 Paranoia < native_float<float> >().main();
2680 Paranoia < native_float<double> >().main();
2684 Paranoia < native_float<long double> >().main();