Home | History | Annotate | Download | only in internal

Lines Matching defs:BiggestInt

182 //   BiggestInt     - the biggest signed integer type.
1645 typedef __int64 BiggestInt;
1649 typedef long long BiggestInt; // NOLINT
1841 // The maximum number a BiggestInt can represent. This definition
1842 // works no matter BiggestInt is represented in one's complement or
1848 const BiggestInt kMaxBiggestInt =
1849 BiggestInt>(1) << (8*sizeof(BiggestInt) - 1));