HomeSort by relevance Sort by last modified time
    Searched refs:Seed (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/llvm/lib/Support/
RandomNumberGenerator.cpp 30 Seed("rng-seed", cl::value_desc("seed"),
31 cl::desc("Seed for the random number generator"), cl::init(0));
35 if (Seed == 0)
39 // Combine seed and salts using std::seed_seq.
40 // Data: Seed-low, Seed-high, Salt
46 Data.push_back(Seed);
47 Data.push_back(Seed >> 32)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceRNG.cpp 29 // subsequent run, for reproducing a bug. Print the seed in a comment in the
30 // asm output. Embed the seed in the binary via metadata that an attacker can't
32 RandomNumberGenerator::RandomNumberGenerator(uint64_t Seed, llvm::StringRef)
33 : State(Seed) {}
36 uint64_t Seed, RandomizationPassesEnum RandomizationPassID, uint64_t Salt) {
41 State = Seed ^ ((uint64_t)RandomizationPassID
IceRNG.h 32 explicit RandomNumberGenerator(uint64_t Seed, llvm::StringRef Salt = "");
33 /// Create a random number generator with: global seed, randomization pass ID
35 /// @param Seed should be a global seed.
39 /// The global seed is 64 bits; since it is likely to originate from the
41 /// such, we merge the randomization pass ID and the salt into the global seed
46 explicit RandomNumberGenerator(uint64_t Seed,
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Rand/
CryptRand.c 20 // Default seed for UEFI Crypto Library
22 CONST UINT8 DefaultSeed[] = "UEFI Crypto Library default seed";
25 Sets up the seed value for the pseudorandom number generator.
27 This function sets up the seed value for the pseudorandom number generator.
28 If Seed is not NULL, then the seed passed in is used.
29 If Seed is NULL, then default seed is used.
31 @param[in] Seed Pointer to seed value.
    [all...]
CryptRandItc.c 21 Sets up the seed value for the pseudorandom number generator.
23 This function sets up the seed value for the pseudorandom number generator.
24 If Seed is not NULL, then the seed passed in is used.
25 If Seed is NULL, then default seed is used.
27 @param[in] Seed Pointer to seed value.
28 If NULL, default seed is used.
29 @param[in] SeedSize Size of seed value.
    [all...]
CryptRandTsc.c 21 Sets up the seed value for the pseudorandom number generator.
23 This function sets up the seed value for the pseudorandom number generator.
24 If Seed is not NULL, then the seed passed in is used.
25 If Seed is NULL, then default seed is used.
27 @param[in] Seed Pointer to seed value.
28 If NULL, default seed is used.
29 @param[in] SeedSize Size of seed value.
    [all...]
CryptRandNull.c 20 Sets up the seed value for the pseudorandom number generator.
24 @param[in] Seed Pointer to seed value.
25 If NULL, default seed is used.
26 @param[in] SeedSize Size of seed value.
27 If Seed is NULL, this parameter is ignored.
35 IN CONST UINT8 *Seed OPTIONAL,
  /external/llvm/lib/Fuzzer/
FuzzerInterface.h 44 // Given the same Seed produces the same mutation.
46 unsigned int Seed);
51 // Should produce the same mutation given the same Seed.
55 unsigned int Seed);
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInterface.h 44 // Given the same Seed produces the same mutation.
46 unsigned int Seed);
51 // Should produce the same mutation given the same Seed.
55 unsigned int Seed);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInterface.h 44 // Given the same Seed produces the same mutation.
46 unsigned int Seed);
51 // Should produce the same mutation given the same Seed.
55 unsigned int Seed);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInterface.h 44 // Given the same Seed produces the same mutation.
46 unsigned int Seed);
51 // Should produce the same mutation given the same Seed.
55 unsigned int Seed);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInterface.h 44 // Given the same Seed produces the same mutation.
46 unsigned int Seed);
51 // Should produce the same mutation given the same Seed.
55 unsigned int Seed);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInterface.h 44 // Given the same Seed produces the same mutation.
46 unsigned int Seed);
51 // Should produce the same mutation given the same Seed.
55 unsigned int Seed);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Rand/
CryptRandNull.c 20 Sets up the seed value for the pseudorandom number generator.
24 @param[in] Seed Pointer to seed value.
25 If NULL, default seed is used.
26 @param[in] SeedSize Size of seed value.
27 If Seed is NULL, this parameter is ignored.
35 IN CONST UINT8 *Seed OPTIONAL,
  /device/linaro/bootloader/edk2/SecurityPkg/RandomNumberGenerator/RngDxe/
RdRand.c 65 seed value.
67 @param[out] SeedBuffer Pointer to a 128bit buffer to store the random seed.
69 @retval EFI_SUCCESS Random seed generation succeeded.
142 UINT8 Seed[16];
150 // Generate high-quality seed for DRBG Entropy
153 Status = RdRandGetSeed128 (Seed);
157 CopyMem (Ptr, Seed, 16);
166 Status = RdRandGetSeed128 (Seed);
170 CopyMem (Ptr, Seed, (Length % 16));
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
ssrc_database.cc 19 uint64_t Seed() {
55 : crit_(CriticalSectionWrapper::CreateCriticalSection()), random_(Seed()) {}
  /external/llvm/lib/Fuzzer/test/
CustomMutatorTest.cpp 31 size_t MaxSize, unsigned int Seed) {
CustomCrossOverTest.cpp 32 unsigned int Seed) {
41 std::mt19937 R(Seed);
  /external/swiftshader/third_party/subzero/crosstest/
vectors.h 103 explicit PRNG(uint32_t Seed = 1) : State(Seed) {}
  /prebuilts/go/darwin-x86/doc/progs/
cgo1.go 18 func Seed(i int) {
cgo2.go 18 func Seed(i int) {
  /prebuilts/go/linux-x86/doc/progs/
cgo1.go 18 func Seed(i int) {
cgo2.go 18 func Seed(i int) {
  /prebuilts/go/darwin-x86/src/math/rand/
rand.go 9 // sequence of values each time a program is run. Use the Seed function to
23 Seed(seed int64)
40 func NewSource(seed int64) Source {
42 rng.Seed(seed)
68 // Seed uses the provided seed value to initialize the generator to a deterministic state.
69 // Seed should not be called concurrently with any other Rand method.
70 func (r *Rand) Seed(seed int64)
    [all...]
  /prebuilts/go/linux-x86/src/math/rand/
rand.go 9 // sequence of values each time a program is run. Use the Seed function to
23 Seed(seed int64)
40 func NewSource(seed int64) Source {
42 rng.Seed(seed)
68 // Seed uses the provided seed value to initialize the generator to a deterministic state.
69 // Seed should not be called concurrently with any other Rand method.
70 func (r *Rand) Seed(seed int64)
    [all...]

Completed in 599 milliseconds

1 2 3 4