53 | 234M | } _ZN5doris16check_cast_valueIimEEvT0_ Line | Count | Source | 30 | 15.4k | void check_cast_value(U b) { | 31 | 15.4k | if constexpr (std::is_unsigned_v<U>) { | 32 | 15.4k | if (b > std::numeric_limits<T>::max()) { | 33 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 0 | std::numeric_limits<T>::max()); | 37 | 0 | } | 38 | 15.4k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 15.4k | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 15.4k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 15.4k | "value {} cast to type {} out of range [{},{}]", b, | 42 | 15.4k | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 15.4k | std::numeric_limits<T>::max()); | 44 | 15.4k | } | 45 | 15.4k | } else { | 46 | 15.4k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 15.4k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 15.4k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 15.4k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 15.4k | std::numeric_limits<T>::max()); | 51 | 15.4k | } | 52 | 15.4k | } | 53 | 15.4k | } |
_ZN5doris16check_cast_valueIilEEvT0_ Line | Count | Source | 30 | 17.4k | void check_cast_value(U b) { | 31 | 17.4k | if constexpr (std::is_unsigned_v<U>) { | 32 | 17.4k | if (b > std::numeric_limits<T>::max()) { | 33 | 17.4k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 17.4k | "value {} cast to type {} out of range [{},{}]", b, | 35 | 17.4k | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 17.4k | std::numeric_limits<T>::max()); | 37 | 17.4k | } | 38 | 17.4k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 17.4k | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 17.4k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 17.4k | "value {} cast to type {} out of range [{},{}]", b, | 42 | 17.4k | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 17.4k | std::numeric_limits<T>::max()); | 44 | 17.4k | } | 45 | 17.4k | } else { | 46 | 17.4k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 0 | std::numeric_limits<T>::max()); | 51 | 0 | } | 52 | 17.4k | } | 53 | 17.4k | } |
_ZN5doris16check_cast_valueItiEEvT0_ Line | Count | Source | 30 | 36.4k | void check_cast_value(U b) { | 31 | 36.4k | if constexpr (std::is_unsigned_v<U>) { | 32 | 36.4k | if (b > std::numeric_limits<T>::max()) { | 33 | 36.4k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 36.4k | "value {} cast to type {} out of range [{},{}]", b, | 35 | 36.4k | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 36.4k | std::numeric_limits<T>::max()); | 37 | 36.4k | } | 38 | 36.4k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 36.4k | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 0 | std::numeric_limits<T>::max()); | 44 | 0 | } | 45 | 36.4k | } else { | 46 | 36.4k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 36.4k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 36.4k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 36.4k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 36.4k | std::numeric_limits<T>::max()); | 51 | 36.4k | } | 52 | 36.4k | } | 53 | 36.4k | } |
_ZN5doris16check_cast_valueIjmEEvT0_ Line | Count | Source | 30 | 1.89M | void check_cast_value(U b) { | 31 | 1.89M | if constexpr (std::is_unsigned_v<U>) { | 32 | 1.89M | if (b > std::numeric_limits<T>::max()) { | 33 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 0 | std::numeric_limits<T>::max()); | 37 | 0 | } | 38 | 1.89M | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 1.89M | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 1.89M | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 1.89M | "value {} cast to type {} out of range [{},{}]", b, | 42 | 1.89M | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 1.89M | std::numeric_limits<T>::max()); | 44 | 1.89M | } | 45 | 1.89M | } else { | 46 | 1.89M | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 1.89M | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 1.89M | "value {} cast to type {} out of range [{},{}]", b, | 49 | 1.89M | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 1.89M | std::numeric_limits<T>::max()); | 51 | 1.89M | } | 52 | 1.89M | } | 53 | 1.89M | } |
_ZN5doris16check_cast_valueIlmEEvT0_ Line | Count | Source | 30 | 232M | void check_cast_value(U b) { | 31 | 232M | if constexpr (std::is_unsigned_v<U>) { | 32 | 232M | if (b > std::numeric_limits<T>::max()) { | 33 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 0 | std::numeric_limits<T>::max()); | 37 | 0 | } | 38 | 232M | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 232M | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 232M | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 232M | "value {} cast to type {} out of range [{},{}]", b, | 42 | 232M | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 232M | std::numeric_limits<T>::max()); | 44 | 232M | } | 45 | 232M | } else { | 46 | 232M | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 232M | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 232M | "value {} cast to type {} out of range [{},{}]", b, | 49 | 232M | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 232M | std::numeric_limits<T>::max()); | 51 | 232M | } | 52 | 232M | } | 53 | 232M | } |
_ZN5doris16check_cast_valueIjlEEvT0_ Line | Count | Source | 30 | 2.08k | void check_cast_value(U b) { | 31 | 2.08k | if constexpr (std::is_unsigned_v<U>) { | 32 | 2.08k | if (b > std::numeric_limits<T>::max()) { | 33 | 2.08k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 2.08k | "value {} cast to type {} out of range [{},{}]", b, | 35 | 2.08k | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 2.08k | std::numeric_limits<T>::max()); | 37 | 2.08k | } | 38 | 2.08k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 2.08k | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 0 | std::numeric_limits<T>::max()); | 44 | 0 | } | 45 | 2.08k | } else { | 46 | 2.08k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 2.08k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 2.08k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 2.08k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 2.08k | std::numeric_limits<T>::max()); | 51 | 2.08k | } | 52 | 2.08k | } | 53 | 2.08k | } |
_ZN5doris16check_cast_valueIiiEEvT0_ Line | Count | Source | 30 | 334 | void check_cast_value(U b) { | 31 | 334 | if constexpr (std::is_unsigned_v<U>) { | 32 | 334 | if (b > std::numeric_limits<T>::max()) { | 33 | 334 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 334 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 334 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 334 | std::numeric_limits<T>::max()); | 37 | 334 | } | 38 | 334 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 334 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 334 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 334 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 334 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 334 | std::numeric_limits<T>::max()); | 44 | 334 | } | 45 | 334 | } else { | 46 | 334 | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 0 | std::numeric_limits<T>::max()); | 51 | 0 | } | 52 | 334 | } | 53 | 334 | } |
Unexecuted instantiation: _ZN5doris16check_cast_valueIliEEvT0_ Unexecuted instantiation: _ZN5doris16check_cast_valueIllEEvT0_ Unexecuted instantiation: _ZN5doris16check_cast_valueIlnEEvT0_ _ZN5doris16check_cast_valueIjjEEvT0_ Line | Count | Source | 30 | 42 | void check_cast_value(U b) { | 31 | 42 | if constexpr (std::is_unsigned_v<U>) { | 32 | 42 | if (b > std::numeric_limits<T>::max()) { | 33 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 0 | std::numeric_limits<T>::max()); | 37 | 0 | } | 38 | 42 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 42 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 42 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 42 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 42 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 42 | std::numeric_limits<T>::max()); | 44 | 42 | } | 45 | 42 | } else { | 46 | 42 | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 42 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 42 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 42 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 42 | std::numeric_limits<T>::max()); | 51 | 42 | } | 52 | 42 | } | 53 | 42 | } |
_ZN5doris16check_cast_valueImjEEvT0_ Line | Count | Source | 30 | 84 | void check_cast_value(U b) { | 31 | 84 | if constexpr (std::is_unsigned_v<U>) { | 32 | 84 | if (b > std::numeric_limits<T>::max()) { | 33 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 0 | std::numeric_limits<T>::max()); | 37 | 0 | } | 38 | 84 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 84 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 84 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 84 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 84 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 84 | std::numeric_limits<T>::max()); | 44 | 84 | } | 45 | 84 | } else { | 46 | 84 | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 84 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 84 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 84 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 84 | std::numeric_limits<T>::max()); | 51 | 84 | } | 52 | 84 | } | 53 | 84 | } |
_ZN5doris16check_cast_valueImnEEvT0_ Line | Count | Source | 30 | 7.21k | void check_cast_value(U b) { | 31 | 7.21k | if constexpr (std::is_unsigned_v<U>) { | 32 | 7.21k | if (b > std::numeric_limits<T>::max()) { | 33 | 7.21k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 7.21k | "value {} cast to type {} out of range [{},{}]", b, | 35 | 7.21k | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 7.21k | std::numeric_limits<T>::max()); | 37 | 7.21k | } | 38 | 7.21k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 7.21k | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 0 | std::numeric_limits<T>::max()); | 44 | 0 | } | 45 | 7.21k | } else { | 46 | 7.21k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 7.21k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 7.21k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 7.21k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 7.21k | std::numeric_limits<T>::max()); | 51 | 7.21k | } | 52 | 7.21k | } | 53 | 7.21k | } |
_ZN5doris16check_cast_valueIsiEEvT0_ Line | Count | Source | 30 | 234 | void check_cast_value(U b) { | 31 | 234 | if constexpr (std::is_unsigned_v<U>) { | 32 | 234 | if (b > std::numeric_limits<T>::max()) { | 33 | 234 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 234 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 234 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 234 | std::numeric_limits<T>::max()); | 37 | 234 | } | 38 | 234 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 234 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 234 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 234 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 234 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 234 | std::numeric_limits<T>::max()); | 44 | 234 | } | 45 | 234 | } else { | 46 | 234 | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 0 | std::numeric_limits<T>::max()); | 51 | 0 | } | 52 | 234 | } | 53 | 234 | } |
_ZN5doris16check_cast_valueIijEEvT0_ Line | Count | Source | 30 | 48 | void check_cast_value(U b) { | 31 | 48 | if constexpr (std::is_unsigned_v<U>) { | 32 | 48 | if (b > std::numeric_limits<T>::max()) { | 33 | 0 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 0 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 0 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 0 | std::numeric_limits<T>::max()); | 37 | 0 | } | 38 | 48 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 48 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 48 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 48 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 48 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 48 | std::numeric_limits<T>::max()); | 44 | 48 | } | 45 | 48 | } else { | 46 | 48 | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 48 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 48 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 48 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 48 | std::numeric_limits<T>::max()); | 51 | 48 | } | 52 | 48 | } | 53 | 48 | } |
Unexecuted instantiation: _ZN5doris16check_cast_valueIhsEEvT0_ Unexecuted instantiation: _ZN5doris16check_cast_valueIhlEEvT0_ |