Home | History | Annotate | Download | only in numerics

Lines Matching refs:Src

20 template <typename Dst, typename Src>
21 inline bool IsValueInRangeForNumericType(Src value) {
47 template <typename Dst, typename Src>
48 inline Dst checked_cast(Src value) {
76 typename Src>
77 inline Dst saturated_cast(Src value) {
104 template <typename Dst, typename Src>
105 inline Dst strict_cast(Src value) {
106 static_assert(std::numeric_limits<Src>::is_specialized,
110 static_assert((internal::StaticDstRangeRelationToSrcRange<Dst, Src>::value ==
140 template <typename Src>
141 StrictNumeric(const StrictNumeric<Src>& rhs)
146 template <typename Src>
147 StrictNumeric(Src value)