HomeSort by: relevance | last modified time | path
    Searched refs:BiggestInt (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 228 // BiggestInt - the biggest signed integer type.
1897 typedef __int64 BiggestInt;
1901 typedef long long BiggestInt; // NOLINT
2091 // The maximum number a BiggestInt can represent. This definition
2092 // works no matter BiggestInt is represented in one's complement or
2098 const BiggestInt kMaxBiggestInt =
2099 ~(static_cast<BiggestInt>(1) << (8*sizeof(BiggestInt) - 1));
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest.h 1536 // can be implicitly cast to BiggestInt.
1539 BiggestInt lhs,
1540 BiggestInt rhs);
1559 // enums can be implicitly cast to BiggestInt.
1565 BiggestInt lhs,
1566 BiggestInt rhs) {
1599 // version for BiggestInt in order to reduce code bloat and allow
1616 const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2)
gtest-printers.h 137 kConvertibleToInteger, // a type implicitly convertible to BiggestInt
183 // converted to BiggestInt, we print it as a BiggestInt.
190 const internal::BiggestInt kBigInt = value;
210 // of a type implicitly convertible to BiggestInt, it's printed as an
238 const T&, internal::BiggestInt>::value
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest.cc 1446 BiggestInt lhs,
1447 BiggestInt rhs) {
1464 BiggestInt val1, BiggestInt val2) {\

Completed in 77 milliseconds