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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc505 // A valid random seed must be in [1, kMaxRandomSeed].
534 // Returns a random seed in range [1, kMaxRandomSeed] based on the
549 // Returns the first valid random seed after 'seed'. The behavior is
554 << "Invalid random seed " << seed << " - must be in [1, "
712 void ShuffleRange(internal::Random* random, int begin, int end, argument
726 const int selected = begin + random->Generate(range_width);
733 inline void Shuffle(internal::Random* random, std::vector<E>* v) { argument
734 ShuffleRange(random, 0, static_cast<int>(v->size()), v);
1198 // Gets the random seed used at the start of the current test iteration.
1201 // Gets the random numbe
1202 internal::Random* random() { return &random_; } function in class:testing::internal::UnitTestImpl
3947 ShuffleTests(internal::Random* random) argument
[all...]

Completed in 12 milliseconds