OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RandomNumberGenerator
(Results
1 - 14
of
14
) sorted by null
/external/llvm/include/llvm/Support/
RandomNumberGenerator.h
1
//==- llvm/Support/
RandomNumberGenerator
.h - RNG for diversity ---*- C++ -*-==//
32
class
RandomNumberGenerator
{
42
RandomNumberGenerator
(StringRef Salt);
51
RandomNumberGenerator
(const
RandomNumberGenerator
&other) = delete;
52
RandomNumberGenerator
&operator=(const
RandomNumberGenerator
&other) = delete;
/external/llvm/lib/Support/
RandomNumberGenerator.cpp
1
//===--
RandomNumberGenerator
.cpp - Implement RNG class -------------------===//
16
#include "llvm/Support/
RandomNumberGenerator
.h"
33
RandomNumberGenerator
::
RandomNumberGenerator
(StringRef Salt) {
55
uint_fast64_t
RandomNumberGenerator
::operator()() {
/external/v8/src/base/utils/
random-number-generator.cc
20
static
RandomNumberGenerator
::EntropySource entropy_source = NULL;
24
void
RandomNumberGenerator
::SetEntropySource(EntropySource source) {
30
RandomNumberGenerator
::
RandomNumberGenerator
() {
81
int
RandomNumberGenerator
::NextInt(int max) {
99
double
RandomNumberGenerator
::NextDouble() {
105
int64_t
RandomNumberGenerator
::NextInt64() {
111
void
RandomNumberGenerator
::NextBytes(void* buffer, size_t buflen) {
118
int
RandomNumberGenerator
::Next(int bits) {
126
void
RandomNumberGenerator
::SetSeed(int64_t seed)
[
all
...]
random-number-generator.h
15
//
RandomNumberGenerator
26
// If two instances of
RandomNumberGenerator
are created with the same seed, and
35
class V8_BASE_EXPORT
RandomNumberGenerator
final {
42
RandomNumberGenerator
();
43
explicit
RandomNumberGenerator
(int64_t seed) { SetSeed(seed); }
/external/v8/src/runtime/
runtime-maths.cc
53
base::
RandomNumberGenerator
::XorShift128(&state0, &state1);
54
raw_cache->set(i, base::
RandomNumberGenerator
::ToDouble(state0, state1));
/external/v8/src/profiler/
sampling-heap-profiler.h
19
class
RandomNumberGenerator
;
163
base::
RandomNumberGenerator
* random)
185
base::
RandomNumberGenerator
* const random_;
/external/llvm/lib/IR/
Module.cpp
29
#include "llvm/Support/
RandomNumberGenerator
.h"
70
RandomNumberGenerator
*Module::createRNG(const Pass* P) const {
85
return new
RandomNumberGenerator
(Salt);
/external/llvm/include/llvm/IR/
Module.h
36
class
RandomNumberGenerator
;
243
/// Get a
RandomNumberGenerator
salted for use with this module. The
252
RandomNumberGenerator
*createRNG(const Pass* P) const;
[
all
...]
/external/v8/src/
isolate.h
31
class
RandomNumberGenerator
;
[
all
...]
isolate.cc
[
all
...]
api.cc
[
all
...]
/external/v8/src/base/platform/
platform-posix.cc
133
static LazyInstance<
RandomNumberGenerator
>::type
platform-win32.cc
716
static LazyInstance<
RandomNumberGenerator
>::type
[
all
...]
/device/linaro/bootloader/edk2/SecurityPkg/
SecurityPkg.dsc
296
SecurityPkg/
RandomNumberGenerator
/RngDxe/RngDxe.inf
Completed in 709 milliseconds