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>;
453 class _LIBCPP_TEMPLATE_VIS numeric_limits
499 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_specialized;
501 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::digits;
503 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::digits10;
505 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_digits10;
507 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_signed;
509 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_integer;
511 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_exact;
513 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::radix;
515 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent;
517 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent10;
519 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent;
521 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent10;
523 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_infinity;
525 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_quiet_NaN;
527 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_signaling_NaN;
529 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<_Tp>::has_denorm;
531 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_denorm_loss;
533 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_iec559;
535 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_bounded;
537 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_modulo;
539 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::traps;
541 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::tinyness_before;
543 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<_Tp>::round_style;
546 class _LIBCPP_TEMPLATE_VIS numeric_limits<const _Tp>
547 : private numeric_limits<_Tp>
549 typedef numeric_limits<_Tp> __base;
592 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_specialized;
594 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::digits;
596 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::digits10;
598 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_digits10;
600 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_signed;
602 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_integer;
604 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_exact;
606 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::radix;
608 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::min_exponent;
610 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::min_exponent10;
612 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_exponent;
614 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_exponent10;
616 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_infinity;
618 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_quiet_NaN;
620 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_signaling_NaN;
622 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<const _Tp>::has_denorm;
624 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_denorm_loss;
626 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_iec559;
628 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_bounded;
630 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_modulo;
632 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::traps;
634 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::tinyness_before;
636 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<const _Tp>::round_style;
639 class _LIBCPP_TEMPLATE_VIS numeric_limits<volatile _Tp>
640 : private numeric_limits<_Tp>
642 typedef numeric_limits<_Tp> __base;
685 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_specialized;
687 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::digits;
689 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::digits10;
691 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_digits10;
693 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_signed;
695 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_integer;
697 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_exact;
699 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::radix;
701 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::min_exponent;
703 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::min_exponent10;
705 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_exponent;
707 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_exponent10;
709 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_infinity;
711 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_quiet_NaN;
713 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_signaling_NaN;
715 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<volatile _Tp>::has_denorm;
717 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_denorm_loss;
719 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_iec559;
721 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_bounded;
723 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_modulo;
725 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::traps;
727 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::tinyness_before;
729 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<volatile _Tp>::round_style;
732 class _LIBCPP_TEMPLATE_VIS numeric_limits<const volatile _Tp>
733 : private numeric_limits<_Tp>
735 typedef numeric_limits<_Tp> __base;
778 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_specialized;
780 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::digits;
782 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::digits10;
784 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_digits10;
786 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_signed;
788 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_integer;
790 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_exact;
792 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::radix;
794 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::min_exponent;
796 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::min_exponent10;
798 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_exponent;
800 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_exponent10;
802 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_infinity;
804 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_quiet_NaN;
806 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_signaling_NaN;
808 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<const volatile _Tp>::has_denorm;
810 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_denorm_loss;
812 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_iec559;
814 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_bounded;
816 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_modulo;
818 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::traps;
820 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::tinyness_before;
822 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<const volatile _Tp>::round_style;