Home | History | Annotate | Download | only in src

Lines Matching refs:BiggestConvertible

1423   // BiggestConvertible is the largest integer type that system-provided
1429 typedef unsigned __int64 BiggestConvertible;
1430 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1434 typedef unsigned long long BiggestConvertible; // NOLINT
1435 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1446 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {