Home | History | Annotate | Download | only in src

Lines Matching full:seed

99 // A valid random seed must be in [1, kMaxRandomSeed].
122 // Returns a random seed in range [1, kMaxRandomSeed] based on the
129 // Normalizes the actual seed to range [1, kMaxRandomSeed] such that
137 // Returns the first valid random seed after 'seed'. The behavior is
138 // undefined if 'seed' is invalid. The seed after kMaxRandomSeed is
140 inline int GetNextRandomSeed(int seed) {
141 GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed)
142 << "Invalid random seed " << seed << " - must be in [1, "
144 const int next_seed = seed + 1;
769 // Gets the random seed used at the start of the current test iteration.
876 // The random number seed used at the beginning of the test run.