Home | History | Annotate | Download | only in src

Lines Matching refs:BiggestConvertible

984   // BiggestConvertible is the largest integer type that system-provided
990 typedef unsigned __int64 BiggestConvertible;
991 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
995 typedef unsigned long long BiggestConvertible; // NOLINT
996 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1007 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {