Home | History | Annotate | Download | only in src

Lines Matching refs:BiggestConvertible

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