Home
last modified time | relevance | path

Searched refs:RandomNumberGenerator (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DRandomNumberGenerator.h32 class RandomNumberGenerator {
54 RandomNumberGenerator(StringRef Salt);
59 RandomNumberGenerator(const RandomNumberGenerator &other) = delete;
60 RandomNumberGenerator &operator=(const RandomNumberGenerator &other) = delete;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DRandomNumberGenerator.cpp43 RandomNumberGenerator::RandomNumberGenerator(StringRef Salt) { in RandomNumberGenerator() function in RandomNumberGenerator
63 RandomNumberGenerator::result_type RandomNumberGenerator::operator()() { in operator ()()
/freebsd-14.2/lib/clang/libllvmminimal/
H A DMakefile43 SRCS+= Support/RandomNumberGenerator.cpp
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp88 std::unique_ptr<RandomNumberGenerator>
104 return std::unique_ptr<RandomNumberGenerator>( in createRNG()
105 new RandomNumberGenerator(Salt)); in createRNG()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h50 class RandomNumberGenerator; variable
298 std::unique_ptr<RandomNumberGenerator> createRNG(const StringRef Name) const;
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dalgorithm1413 template <class RandomAccessIterator, class RandomNumberGenerator>
1416 RandomNumberGenerator& rand); // deprecated in C++14, removed in C++17
/freebsd-14.2/lib/clang/libllvm/
H A DMakefile1173 SRCS_MIN+= Support/RandomNumberGenerator.cpp