53 | 220M | } _ZN5doris16check_cast_valueIimEEvT0_ Line | Count | Source | 30 | 14.0k | void check_cast_value(U b) { | 31 | 14.0k | if constexpr (std::is_unsigned_v<U>) { | 32 | 14.0k | 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 | 14.0k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 14.0k | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 14.0k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 14.0k | "value {} cast to type {} out of range [{},{}]", b, | 42 | 14.0k | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 14.0k | std::numeric_limits<T>::max()); | 44 | 14.0k | } | 45 | 14.0k | } else { | 46 | 14.0k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 14.0k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 14.0k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 14.0k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 14.0k | std::numeric_limits<T>::max()); | 51 | 14.0k | } | 52 | 14.0k | } | 53 | 14.0k | } |
_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.8k | void check_cast_value(U b) { | 31 | 36.8k | if constexpr (std::is_unsigned_v<U>) { | 32 | 36.8k | if (b > std::numeric_limits<T>::max()) { | 33 | 36.8k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 36.8k | "value {} cast to type {} out of range [{},{}]", b, | 35 | 36.8k | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 36.8k | std::numeric_limits<T>::max()); | 37 | 36.8k | } | 38 | 36.8k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 36.8k | 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.8k | } else { | 46 | 36.8k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 36.8k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 36.8k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 36.8k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 36.8k | std::numeric_limits<T>::max()); | 51 | 36.8k | } | 52 | 36.8k | } | 53 | 36.8k | } |
_ZN5doris16check_cast_valueIjmEEvT0_ Line | Count | Source | 30 | 67.5k | void check_cast_value(U b) { | 31 | 67.5k | if constexpr (std::is_unsigned_v<U>) { | 32 | 67.5k | 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 | 67.5k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 67.5k | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 67.5k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 67.5k | "value {} cast to type {} out of range [{},{}]", b, | 42 | 67.5k | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 67.5k | std::numeric_limits<T>::max()); | 44 | 67.5k | } | 45 | 67.5k | } else { | 46 | 67.5k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 67.5k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 67.5k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 67.5k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 67.5k | std::numeric_limits<T>::max()); | 51 | 67.5k | } | 52 | 67.5k | } | 53 | 67.5k | } |
_ZN5doris16check_cast_valueIlmEEvT0_ Line | Count | Source | 30 | 219M | void check_cast_value(U b) { | 31 | 219M | if constexpr (std::is_unsigned_v<U>) { | 32 | 219M | 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 | 219M | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 219M | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 219M | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 219M | "value {} cast to type {} out of range [{},{}]", b, | 42 | 219M | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 219M | std::numeric_limits<T>::max()); | 44 | 219M | } | 45 | 219M | } else { | 46 | 219M | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 219M | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 219M | "value {} cast to type {} out of range [{},{}]", b, | 49 | 219M | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 219M | std::numeric_limits<T>::max()); | 51 | 219M | } | 52 | 219M | } | 53 | 219M | } |
_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 | } |
_ZN5doris16check_cast_valueIjlEEvT0_ Line | Count | Source | 30 | 1.82k | void check_cast_value(U b) { | 31 | 1.82k | if constexpr (std::is_unsigned_v<U>) { | 32 | 1.82k | if (b > std::numeric_limits<T>::max()) { | 33 | 1.82k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 1.82k | "value {} cast to type {} out of range [{},{}]", b, | 35 | 1.82k | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 1.82k | std::numeric_limits<T>::max()); | 37 | 1.82k | } | 38 | 1.82k | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 1.82k | 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 | 1.82k | } else { | 46 | 1.82k | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 1.82k | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 1.82k | "value {} cast to type {} out of range [{},{}]", b, | 49 | 1.82k | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 1.82k | std::numeric_limits<T>::max()); | 51 | 1.82k | } | 52 | 1.82k | } | 53 | 1.82k | } |
Unexecuted instantiation: _ZN5doris16check_cast_valueIliEEvT0_ Unexecuted instantiation: _ZN5doris16check_cast_valueIllEEvT0_ Unexecuted instantiation: _ZN5doris16check_cast_valueIlnEEvT0_ _ZN5doris16check_cast_valueIjjEEvT0_ Line | Count | Source | 30 | 50 | void check_cast_value(U b) { | 31 | 50 | if constexpr (std::is_unsigned_v<U>) { | 32 | 50 | 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 | 50 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 50 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 50 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 50 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 50 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 50 | std::numeric_limits<T>::max()); | 44 | 50 | } | 45 | 50 | } else { | 46 | 50 | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 50 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 50 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 50 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 50 | std::numeric_limits<T>::max()); | 51 | 50 | } | 52 | 50 | } | 53 | 50 | } |
_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 | 96 | void check_cast_value(U b) { | 31 | 96 | if constexpr (std::is_unsigned_v<U>) { | 32 | 96 | if (b > std::numeric_limits<T>::max()) { | 33 | 96 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 34 | 96 | "value {} cast to type {} out of range [{},{}]", b, | 35 | 96 | typeid(T).name(), std::numeric_limits<T>::min(), | 36 | 96 | std::numeric_limits<T>::max()); | 37 | 96 | } | 38 | 96 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 96 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 96 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 96 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 96 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 96 | std::numeric_limits<T>::max()); | 44 | 96 | } | 45 | 96 | } else { | 46 | 96 | 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 | 96 | } | 53 | 96 | } |
_ZN5doris16check_cast_valueIijEEvT0_ Line | Count | Source | 30 | 46 | void check_cast_value(U b) { | 31 | 46 | if constexpr (std::is_unsigned_v<U>) { | 32 | 46 | 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 | 46 | } else if constexpr (std::is_unsigned_v<T>) { | 39 | 46 | if (b < 0 || b > std::numeric_limits<T>::max()) { | 40 | 46 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 41 | 46 | "value {} cast to type {} out of range [{},{}]", b, | 42 | 46 | typeid(T).name(), std::numeric_limits<T>::min(), | 43 | 46 | std::numeric_limits<T>::max()); | 44 | 46 | } | 45 | 46 | } else { | 46 | 46 | if (b < std::numeric_limits<T>::min() || b > std::numeric_limits<T>::max()) { | 47 | 46 | throw doris::Exception(ErrorCode::INVALID_ARGUMENT, | 48 | 46 | "value {} cast to type {} out of range [{},{}]", b, | 49 | 46 | typeid(T).name(), std::numeric_limits<T>::min(), | 50 | 46 | std::numeric_limits<T>::max()); | 51 | 46 | } | 52 | 46 | } | 53 | 46 | } |
Unexecuted instantiation: _ZN5doris16check_cast_valueIhsEEvT0_ Unexecuted instantiation: _ZN5doris16check_cast_valueIhlEEvT0_ |