Home | History | Annotate | Download | only in src

Lines Matching full:seed

104 // A valid random seed must be in [1, kMaxRandomSeed].
133 // Returns a random seed in range [1, kMaxRandomSeed] based on the
140 // Normalizes the actual seed to range [1, kMaxRandomSeed] such that
148 // Returns the first valid random seed after 'seed'. The behavior is
149 // undefined if 'seed' is invalid. The seed after kMaxRandomSeed is
151 inline int GetNextRandomSeed(int seed) {
152 GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed)
153 << "Invalid random seed " << seed << " - must be in [1, "
155 const int next_seed = seed + 1;
797 // Gets the random seed used at the start of the current test iteration.
904 // The random number seed used at the beginning of the test run.