Lines Matching refs:numeric_limits
20 class numeric_limits
78 template<> class numeric_limits<cv bool>;
80 template<> class numeric_limits<cv char>;
81 template<> class numeric_limits<cv signed char>;
82 template<> class numeric_limits<cv unsigned char>;
83 template<> class numeric_limits<cv wchar_t>;
84 template<> class numeric_limits<cv char8_t>; // C++20
85 template<> class numeric_limits<cv char16_t>;
86 template<> class numeric_limits<cv char32_t>;
88 template<> class numeric_limits<cv short>;
89 template<> class numeric_limits<cv int>;
90 template<> class numeric_limits<cv long>;
91 template<> class numeric_limits<cv long long>;
92 template<> class numeric_limits<cv unsigned short>;
93 template<> class numeric_limits<cv unsigned int>;
94 template<> class numeric_limits<cv unsigned long>;
95 template<> class numeric_limits<cv unsigned long long>;
97 template<> class numeric_limits<cv float>;
98 template<> class numeric_limits<cv double>;
99 template<> class numeric_limits<cv long double>;
443 class _LIBCPP_TEMPLATE_VIS numeric_limits
489 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_specialized;
491 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::digits;
493 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::digits10;
495 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_digits10;
497 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_signed;
499 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_integer;
501 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_exact;
503 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::radix;
505 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent;
507 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent10;
509 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent;
511 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent10;
513 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_infinity;
515 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_quiet_NaN;
517 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_signaling_NaN;
519 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<_Tp>::has_denorm;
521 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_denorm_loss;
523 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_iec559;
525 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_bounded;
527 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_modulo;
529 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::traps;
531 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::tinyness_before;
533 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<_Tp>::round_style;
536 class _LIBCPP_TEMPLATE_VIS numeric_limits<const _Tp>
537 : private numeric_limits<_Tp>
539 typedef numeric_limits<_Tp> __base;
582 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_specialized;
584 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::digits;
586 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::digits10;
588 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_digits10;
590 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_signed;
592 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_integer;
594 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_exact;
596 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::radix;
598 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::min_exponent;
600 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::min_exponent10;
602 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_exponent;
604 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_exponent10;
606 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_infinity;
608 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_quiet_NaN;
610 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_signaling_NaN;
612 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<const _Tp>::has_denorm;
614 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_denorm_loss;
616 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_iec559;
618 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_bounded;
620 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_modulo;
622 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::traps;
624 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::tinyness_before;
626 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<const _Tp>::round_style;
629 class _LIBCPP_TEMPLATE_VIS numeric_limits<volatile _Tp>
630 : private numeric_limits<_Tp>
632 typedef numeric_limits<_Tp> __base;
675 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_specialized;
677 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::digits;
679 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::digits10;
681 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_digits10;
683 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_signed;
685 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_integer;
687 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_exact;
689 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::radix;
691 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::min_exponent;
693 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::min_exponent10;
695 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_exponent;
697 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_exponent10;
699 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_infinity;
701 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_quiet_NaN;
703 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_signaling_NaN;
705 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<volatile _Tp>::has_denorm;
707 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_denorm_loss;
709 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_iec559;
711 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_bounded;
713 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_modulo;
715 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::traps;
717 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::tinyness_before;
719 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<volatile _Tp>::round_style;
722 class _LIBCPP_TEMPLATE_VIS numeric_limits<const volatile _Tp>
723 : private numeric_limits<_Tp>
725 typedef numeric_limits<_Tp> __base;
768 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_specialized;
770 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::digits;
772 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::digits10;
774 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_digits10;
776 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_signed;
778 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_integer;
780 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_exact;
782 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::radix;
784 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::min_exponent;
786 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::min_exponent10;
788 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_exponent;
790 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_exponent10;
792 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_infinity;
794 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_quiet_NaN;
796 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_signaling_NaN;
798 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<const volatile _Tp>::has_denorm;
800 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_denorm_loss;
802 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_iec559;
804 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_bounded;
806 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_modulo;
808 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::traps;
810 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::tinyness_before;
812 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<const volatile _Tp>::round_style;