Home | History | Annotate | Download | only in src

Lines Matching refs:BiggestConvertible

1012   // BiggestConvertible is the largest integer type that system-provided
1018 typedef unsigned __int64 BiggestConvertible;
1019 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1023 typedef unsigned long long BiggestConvertible; // NOLINT
1024 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1035 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {