Searched defs:kMaxRange (Results 1 - 2 of 2) sorted by relevance

/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h667 static const UInt32 kMaxRange = 1u << 31; member in class:testing::internal::Random
674 // 0 or greater than kMaxRange.
/ndk/sources/third_party/googletest/googletest/src/
H A Dgtest.cc286 // than kMaxRange.
289 state_ = (1103515245U*state_ + 12345U) % kMaxRange;
293 GTEST_CHECK_(range <= kMaxRange)
295 << "but this can only generate numbers in [0, " << kMaxRange << ")."; local

Completed in 30 milliseconds