Lines Matching refs:max
35 bool ParseUint(const char* s, T* out, T max = std::numeric_limits<T>::max(),
65 if (max < result) {
77 bool ParseUint(const std::string& s, T* out, T max = std::numeric_limits<T>::max(),
79 return ParseUint(s.c_str(), out, max, allow_suffixes);
83 bool ParseByteCount(const char* s, T* out, T max = std::numeric_limits<T>::max()) {
84 return ParseUint(s, out, max, true);
89 bool ParseByteCount(const std::string& s, T* out, T max = std::numeric_limits<T>::max()) {
90 return ParseByteCount(s.c_str(), out, max);
100 T max = std::numeric_limits<T>::max()) {
117 if (result < min || max < result) {
131 T max = std::numeric_limits<T>::max()) {
132 return ParseInt(s.c_str(), out, min, max);