Searched refs:RandomNumberGenerator (Results 1 – 7 of 7) sorted by relevance
32 class RandomNumberGenerator {54 RandomNumberGenerator(StringRef Salt);59 RandomNumberGenerator(const RandomNumberGenerator &other) = delete;60 RandomNumberGenerator &operator=(const RandomNumberGenerator &other) = delete;
43 RandomNumberGenerator::RandomNumberGenerator(StringRef Salt) { in RandomNumberGenerator() function in RandomNumberGenerator63 RandomNumberGenerator::result_type RandomNumberGenerator::operator()() { in operator ()()
43 SRCS+= Support/RandomNumberGenerator.cpp
88 std::unique_ptr<RandomNumberGenerator>104 return std::unique_ptr<RandomNumberGenerator>( in createRNG()105 new RandomNumberGenerator(Salt)); in createRNG()
50 class RandomNumberGenerator; variable298 std::unique_ptr<RandomNumberGenerator> createRNG(const StringRef Name) const;
1413 template <class RandomAccessIterator, class RandomNumberGenerator>1416 RandomNumberGenerator& rand); // deprecated in C++14, removed in C++17
1173 SRCS_MIN+= Support/RandomNumberGenerator.cpp