Lines Matching defs:seed
82 // A valid random seed must be in [1, kMaxRandomSeed].
111 // Returns a random seed in range [1, kMaxRandomSeed] based on the
118 // Normalizes the actual seed to range [1, kMaxRandomSeed] such that
127 // Returns the first valid random seed after 'seed'. The behavior is
128 // undefined if 'seed' is invalid. The seed after kMaxRandomSeed is
130 inline int GetNextRandomSeed(int seed) {
131 GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed)
132 << "Invalid random seed " << seed << " - must be in [1, "
134 const int next_seed = seed + 1;
820 // Gets the random seed used at the start of the current test iteration.
933 // The random number seed used at the beginning of the test run.