Lines Matching refs:RandomNumberGenerator
22 static RandomNumberGenerator::EntropySource entropy_source = nullptr;
25 void RandomNumberGenerator::SetEntropySource(EntropySource source) { in SetEntropySource()
31 RandomNumberGenerator::RandomNumberGenerator() { in RandomNumberGenerator() function in v8::base::RandomNumberGenerator
90 int RandomNumberGenerator::NextInt(int max) { in NextInt()
108 double RandomNumberGenerator::NextDouble() { in NextDouble()
114 int64_t RandomNumberGenerator::NextInt64() { in NextInt64()
120 void RandomNumberGenerator::NextBytes(void* buffer, size_t buflen) { in NextBytes()
138 std::vector<uint64_t> RandomNumberGenerator::NextSample(uint64_t max, in NextSample()
171 std::vector<uint64_t> RandomNumberGenerator::NextSampleSlow( in NextSampleSlow()
206 int RandomNumberGenerator::Next(int bits) { in Next()
214 void RandomNumberGenerator::SetSeed(int64_t seed) { in SetSeed()
222 uint64_t RandomNumberGenerator::MurmurHash3(uint64_t h) { in MurmurHash3()