Lines Matching full:seed
95 // A valid random seed must be in [1, kMaxRandomSeed].
101 // Returns a random seed in range [1, kMaxRandomSeed] based on the
108 // Normalizes the actual seed to range [1, kMaxRandomSeed] such that
116 // Returns the first valid random seed after 'seed'. The behavior is
117 // undefined if 'seed' is invalid. The seed after kMaxRandomSeed is
119 inline int GetNextRandomSeed(int seed) {
120 GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed)
121 << "Invalid random seed " << seed << " - must be in [1, "
123 const int next_seed = seed + 1;
1002 // Gets the random seed used at the start of the current test iteration.
1103 // The random number seed used at the beginning of the test run.