Home | History | Annotate | Download | only in src

Lines Matching defs:BiggestConvertible

980   // BiggestConvertible is the largest integer type that system-provided
986 typedef unsigned __int64 BiggestConvertible;
987 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
991 typedef unsigned long long BiggestConvertible; // NOLINT
992 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1003 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {