HomeSort by relevance Sort by last modified time
    Searched refs:seed (Results 76 - 100 of 1705) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4393122/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4479392/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4579689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4630689/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/
FuzzerRandom.h 20 Random(unsigned int seed) : std::mt19937(seed) {}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
seed_result_type.pass.cpp 15 // void seed(result_type s = default_seed);
28 e2.seed(s);
41 e2.seed(s);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.eng/rand.eng.mers/
seed_result_type.pass.cpp 17 // void seed(result_type s = default_seed);
30 e2.seed(s);
43 e2.seed(s);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.eng/rand.eng.sub/
seed_result_type.pass.cpp 15 // void seed(result_type s = default_seed);
28 e2.seed(s);
41 e2.seed(s);
  /system/update_engine/update_manager/
prng.h 30 // Initializes the generator with the passed |seed| value.
31 explicit PRNG(uint32_t seed) : gen_(seed) {}
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
RandomAdaptor.java 177 public void setSeed(int seed) {
179 randomGenerator.setSeed(seed);
184 public void setSeed(int[] seed) {
186 randomGenerator.setSeed(seed);
192 public void setSeed(long seed) {
194 randomGenerator.setSeed(seed);
Well1024a.java 54 * seed.</p>
60 /** Creates a new random number generator using a single int seed.
61 * @param seed the initial seed (32 bits integer)
63 public Well1024a(int seed) {
64 super(K, M1, M2, M3, seed);
67 /** Creates a new random number generator using an int array seed.
68 * @param seed the initial seed (32 bits integers array), if null
69 * the seed of the generator will be related to the current tim
    [all...]
Well19937a.java 54 * seed.</p>
60 /** Creates a new random number generator using a single int seed.
61 * @param seed the initial seed (32 bits integer)
63 public Well19937a(int seed) {
64 super(K, M1, M2, M3, seed);
67 /** Creates a new random number generator using an int array seed.
68 * @param seed the initial seed (32 bits integers array), if null
69 * the seed of the generator will be related to the current tim
    [all...]
Well19937c.java 54 * seed.</p>
60 /** Creates a new random number generator using a single int seed.
61 * @param seed the initial seed (32 bits integer)
63 public Well19937c(int seed) {
64 super(K, M1, M2, M3, seed);
67 /** Creates a new random number generator using an int array seed.
68 * @param seed the initial seed (32 bits integers array), if null
69 * the seed of the generator will be related to the current tim
    [all...]
Well44497a.java 54 * seed.</p>
60 /** Creates a new random number generator using a single int seed.
61 * @param seed the initial seed (32 bits integer)
63 public Well44497a(int seed) {
64 super(K, M1, M2, M3, seed);
67 /** Creates a new random number generator using an int array seed.
68 * @param seed the initial seed (32 bits integers array), if null
69 * the seed of the generator will be related to the current tim
    [all...]
Well44497b.java 54 * seed.</p>
60 /** Creates a new random number generator using a single int seed.
61 * @param seed the initial seed (32 bits integer)
63 public Well44497b(int seed) {
64 super(K, M1, M2, M3, seed);
67 /** Creates a new random number generator using an int array seed.
68 * @param seed the initial seed (32 bits integers array), if null
69 * the seed of the generator will be related to the current tim
    [all...]
Well512a.java 54 * seed.</p>
60 /** Creates a new random number generator using a single int seed.
61 * @param seed the initial seed (32 bits integer)
63 public Well512a(int seed) {
64 super(K, M1, M2, M3, seed);
67 /** Creates a new random number generator using an int array seed.
68 * @param seed the initial seed (32 bits integers array), if null
69 * the seed of the generator will be related to the current tim
    [all...]
AbstractRandomGenerator.java 66 public void setSeed(int seed) {
67 setSeed((long) seed);
71 public void setSeed(int[] seed) {
76 for (int s : seed) {
83 * Sets the seed of the underyling random number generator using a
84 * {@code long} seed. Sequences of values generated starting with the
91 * @param seed the seed value
93 public abstract void setSeed(long seed);
  /external/compiler-rt/test/asan/TestCases/Posix/
halt_on_error-torture.cc 32 void random_delay(unsigned *seed) {
33 *seed = 1664525 * *seed + 1013904223;
34 struct timespec delay = { 0, (*seed % 1000) * 1000 };
39 unsigned seed = (unsigned)(size_t)arg; local
45 random_delay(&seed);
  /external/tensorflow/tensorflow/contrib/stateless/python/kernel_tests/
stateless_random_ops_test.py 56 # after seed scrambling.
58 for seed in (7, 17), (11, 5), (2, 3):
59 preseed = invert_philox(key, (seed[0], 0, seed[1], 0)).astype(np.uint64)
61 random_seed.set_random_seed(seed[0])
65 stateful = stateful_op(shape, seed=seed[1])
66 pure = stateless_op(shape, seed=preseed)
77 pure = stateless_op(shape, seed=seed_t)
78 values = [(seed, pure.eval(feed_dict={seed_t: seed})
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSUtils.java 29 public static void genRandom(long seed, int factor, int offset, float array[]) {
30 Random r = new Random(seed);
36 public static void genRandom(long seed, int factor, int offset, float array[],
38 Random r = new Random(seed);
49 public static void genRandom(long seed, int max, int factor, int offset, int array[]) {
50 Random r = new Random(seed);
56 public static void genRandom(long seed, int factor, int offset, int array[],
58 Random r = new Random(seed);
69 public static void genRandom(long seed, int max, int factor, int offset, int array[],
71 Random r = new Random(seed);
    [all...]
  /external/fio/lib/
bloom.c 22 unsigned int seed; member in struct:bloom_hash
26 static uint32_t bloom_crc32c(const void *buf, uint32_t len, uint32_t seed)
31 static uint32_t bloom_fnv(const void *buf, uint32_t len, uint32_t seed)
33 return fnv(buf, len, seed);
40 .seed = BLOOM_SEED,
44 .seed = BLOOM_SEED,
48 .seed = BLOOM_SEED,
52 .seed = BLOOM_SEED,
56 .seed = BLOOM_SEED,
96 hash[i] = hashes[i].fn(data, len, hashes[i].seed);
    [all...]
  /external/guava/guava/src/com/google/common/hash/
Murmur3_32HashFunction.java 51 private final int seed; field in class:Murmur3_32HashFunction
53 Murmur3_32HashFunction(int seed) {
54 this.seed = seed;
62 return new Murmur3_32Hasher(seed);
67 return "Hashing.murmur3_32(" + seed + ")";
74 return seed == other.seed;
81 return getClass().hashCode() ^ seed;
86 int h1 = mixH1(seed, k1)
    [all...]
  /external/tensorflow/tensorflow/contrib/image/python/ops/
distort_image_ops.py 39 seed=None):
56 seed: An operation-specific seed. It will be used in conjunction
57 with the graph-level seed to determine the real seeds that will be
59 set_random_seed for its interaction with the graph-level random seed.
87 [], -max_delta_hue, max_delta_hue, seed=seed)
92 [], lower_saturation, upper_saturation, seed=seed)
97 [], lower_value, upper_value, seed=seed
    [all...]
  /external/tensorflow/tensorflow/python/ops/
random_ops.py 52 seed=None,
63 seed: A Python integer. Used to create a random seed for the distribution.
76 seed1, seed2 = random_seed.get_seed(seed)
78 shape_tensor, dtype, seed=seed1, seed2=seed2)
93 seed=None,
112 seed: A Python integer. Used to create a random seed for the distribution.
128 seed1, seed2 = random_seed.get_seed(seed)
135 seed=seed1
    [all...]

Completed in 327 milliseconds

1 2 34 5 6 7 8 91011>>