Home | History | Annotate | Download | only in internal

Lines Matching defs:BiggestInt

174 //   BiggestInt     - the biggest signed integer type.
1507 typedef __int64 BiggestInt;
1511 typedef long long BiggestInt; // NOLINT
1679 // The maximum number a BiggestInt can represent. This definition
1680 // works no matter BiggestInt is represented in one's complement or
1686 const BiggestInt kMaxBiggestInt =
1687 ~(static_cast<BiggestInt>(1) << (8*sizeof(BiggestInt) - 1));