Searched refs:BiggestInt (Results 1 - 5 of 5) sorted by relevance

/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h1402 // can be implicitly cast to BiggestInt.
1405 BiggestInt lhs,
1406 BiggestInt rhs);
1426 // enums can be implicitly cast to BiggestInt.
1432 BiggestInt lhs,
1433 BiggestInt rhs) {
1500 // version for BiggestInt in order to reduce code bloat and allow
1517 const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2)
H A Dgtest-printers.h126 kConvertibleToInteger, // a type implicitly convertible to BiggestInt
166 // converted to BiggestInt, we print it as a BiggestInt.
173 const internal::BiggestInt kBigInt = value;
180 // of a type implicitly convertible to BiggestInt, it's printed as an
207 internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h246 // BiggestInt - the biggest signed integer type.
2237 typedef __int64 BiggestInt; typedef in namespace:testing::internal
2241 typedef long long BiggestInt; // NOLINT typedef in namespace:testing::internal
2432 // The maximum number a BiggestInt can represent. This definition
2433 // works no matter BiggestInt is represented in one's complement or
2439 const BiggestInt kMaxBiggestInt =
2440 ~(static_cast<BiggestInt>(1) << (8*sizeof(BiggestInt) - 1));
/gem5/ext/googletest/googletest/test/
H A Dgtest-printers_test.cc97 // A class implicitly convertible to BiggestInt.
100 operator ::testing::internal::BiggestInt() const { return 42; } function in class:BiggestIntConvertible::operator::testing::internal
273 // Tests printing a class implicitly convertible to BiggestInt.
533 reinterpret_cast<internal::BiggestInt>(&MyFunction))),
1210 reinterpret_cast<internal::BiggestInt>(fp)));
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc1439 BiggestInt lhs,
1440 BiggestInt rhs) {
1457 BiggestInt val1, BiggestInt val2) {\

Completed in 52 milliseconds