Lines Matching refs:numeric_limits

21 class numeric_limits
79 template<> class numeric_limits<cv bool>;
81 template<> class numeric_limits<cv char>;
82 template<> class numeric_limits<cv signed char>;
83 template<> class numeric_limits<cv unsigned char>;
84 template<> class numeric_limits<cv wchar_t>;
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>;
440 class _LIBCPP_TYPE_VIS_ONLY numeric_limits
486 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_specialized;
488 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::digits;
490 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::digits10;
492 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_digits10;
494 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_signed;
496 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_integer;
498 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_exact;
500 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::radix;
502 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent;
504 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::min_exponent10;
506 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent;
508 _LIBCPP_CONSTEXPR const int numeric_limits<_Tp>::max_exponent10;
510 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_infinity;
512 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_quiet_NaN;
514 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_signaling_NaN;
516 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<_Tp>::has_denorm;
518 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::has_denorm_loss;
520 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_iec559;
522 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_bounded;
524 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::is_modulo;
526 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::traps;
528 _LIBCPP_CONSTEXPR const bool numeric_limits<_Tp>::tinyness_before;
530 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<_Tp>::round_style;
533 class _LIBCPP_TYPE_VIS_ONLY numeric_limits<const _Tp>
534 : private numeric_limits<_Tp>
536 typedef numeric_limits<_Tp> __base;
579 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_specialized;
581 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::digits;
583 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::digits10;
585 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_digits10;
587 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_signed;
589 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_integer;
591 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_exact;
593 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::radix;
595 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::min_exponent;
597 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::min_exponent10;
599 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_exponent;
601 _LIBCPP_CONSTEXPR const int numeric_limits<const _Tp>::max_exponent10;
603 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_infinity;
605 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_quiet_NaN;
607 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_signaling_NaN;
609 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<const _Tp>::has_denorm;
611 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::has_denorm_loss;
613 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_iec559;
615 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_bounded;
617 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::is_modulo;
619 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::traps;
621 _LIBCPP_CONSTEXPR const bool numeric_limits<const _Tp>::tinyness_before;
623 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<const _Tp>::round_style;
626 class _LIBCPP_TYPE_VIS_ONLY numeric_limits<volatile _Tp>
627 : private numeric_limits<_Tp>
629 typedef numeric_limits<_Tp> __base;
672 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_specialized;
674 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::digits;
676 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::digits10;
678 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_digits10;
680 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_signed;
682 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_integer;
684 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_exact;
686 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::radix;
688 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::min_exponent;
690 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::min_exponent10;
692 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_exponent;
694 _LIBCPP_CONSTEXPR const int numeric_limits<volatile _Tp>::max_exponent10;
696 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_infinity;
698 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_quiet_NaN;
700 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_signaling_NaN;
702 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<volatile _Tp>::has_denorm;
704 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::has_denorm_loss;
706 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_iec559;
708 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_bounded;
710 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::is_modulo;
712 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::traps;
714 _LIBCPP_CONSTEXPR const bool numeric_limits<volatile _Tp>::tinyness_before;
716 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<volatile _Tp>::round_style;
719 class _LIBCPP_TYPE_VIS_ONLY numeric_limits<const volatile _Tp>
720 : private numeric_limits<_Tp>
722 typedef numeric_limits<_Tp> __base;
765 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_specialized;
767 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::digits;
769 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::digits10;
771 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_digits10;
773 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_signed;
775 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_integer;
777 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_exact;
779 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::radix;
781 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::min_exponent;
783 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::min_exponent10;
785 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_exponent;
787 _LIBCPP_CONSTEXPR const int numeric_limits<const volatile _Tp>::max_exponent10;
789 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_infinity;
791 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_quiet_NaN;
793 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_signaling_NaN;
795 _LIBCPP_CONSTEXPR const float_denorm_style numeric_limits<const volatile _Tp>::has_denorm;
797 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::has_denorm_loss;
799 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_iec559;
801 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_bounded;
803 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::is_modulo;
805 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::traps;
807 _LIBCPP_CONSTEXPR const bool numeric_limits<const volatile _Tp>::tinyness_before;
809 _LIBCPP_CONSTEXPR const float_round_style numeric_limits<const volatile _Tp>::round_style;