Home | History | Annotate | Download | only in src

Lines Matching refs:BiggestConvertible

1023   // BiggestConvertible is the largest integer type that system-provided
1027 typedef unsigned __int64 BiggestConvertible;
1028 const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10);
1030 typedef unsigned long long BiggestConvertible; // NOLINT
1031 const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10);
1040 if (parse_success && static_cast<BiggestConvertible>(result) == parsed) {