Home | History | Annotate | Download | only in internal

Lines Matching defs:BiggestInt

182 //   BiggestInt     - the biggest signed integer type.
1920 typedef __int64 BiggestInt;
1924 typedef long long BiggestInt; // NOLINT
2113 // The maximum number a BiggestInt can represent. This definition
2114 // works no matter BiggestInt is represented in one's complement or
2120 const BiggestInt kMaxBiggestInt =
2121 ~(static_cast<BiggestInt>(1) << (8*sizeof(BiggestInt) - 1));