HomeSort by relevance Sort by last modified time
    Searched defs:seed (Results 1 - 25 of 417) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/msan/
rand_r.cc 9 unsigned seed; local
11 seed = 42;
13 int v = rand_r(&seed);
  /external/e2fsprogs/lib/uuid/
gen_uuid_nt.c 28 // OUT PUCHAR Seed // 6 bytes
48 void* seed // 6 bytes
85 unsigned char seed[6]; local
86 ((NtAllocateUuids_2000)NtAllocateUuids)(out, ((char*)out)+8, ((char*)out)+12, &seed[0] );
  /external/v8/test/mjsunit/regress/
regress-2612.js 42 var seed = 1; variable
45 seed = seed * 171 % 1337 + 17;
46 return (seed % 1000) / 1000;
50 seed = seed * 131 % 1773 + 13;
51 return seed % max;
  /external/v8/test/cctest/
test-fuzz-arm64.cc 39 uint16_t seed[3] = {1, 2, 3}; local
40 seed48(seed);
58 uint16_t seed[3] = {42, 43, 44}; local
59 seed48(seed);
  /external/boringssl/src/include/openssl/
rand.h 97 void (*seed) (const void *buf, int num); member in struct:rand_meth_st
  /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/guava/guava-tests/test/com/google/common/collect/
SpecialRandom.java 22 * Utility class for being able to seed a {@link Random} value with a passed
23 * in seed from a benchmark parameter.
37 private final long seed; field in class:SpecialRandom
41 this.seed = 0;
44 public SpecialRandom(long seed) {
45 super(seed);
47 this.seed = seed;
51 return hasSeed ? "(seed:" + seed : "(default seed)"
    [all...]
  /external/libdrm/
xf86drmRandom.h 34 unsigned long seed; member in struct:RandomState
  /external/tpm2/
Hierarchy.c 142 // This function returns the primary seed of a hierarchy.
149 TPM2B_SEED *seed = NULL; local
153 seed = &gp.PPSeed;
156 seed = &gp.SPSeed;
159 seed = &gp.EPSeed;
167 return seed;
  /external/v8/test/mjsunit/
sparse-array-reverse.js 57 var seed = 43; variable
62 seed = (69069 * seed + 1234567) % 0x100000000;
63 return (seed & 0x100000) != 0;
unicodelctest-no-optimization.js 57 var seed = 49734321; variable
63 seed = ((seed + 0x7ed55d16) + (seed << 12)) & 0xffffffff;
64 seed = ((seed ^ 0xc761c23c) ^ (seed >>> 19)) & 0xffffffff;
65 seed = ((seed + 0x165667b1) + (seed << 5)) & 0xffffffff
    [all...]
unicodelctest.js 56 var seed = 49734321; variable
62 seed = ((seed + 0x7ed55d16) + (seed << 12)) & 0xffffffff;
63 seed = ((seed ^ 0xc761c23c) ^ (seed >>> 19)) & 0xffffffff;
64 seed = ((seed + 0x165667b1) + (seed << 5)) & 0xffffffff
    [all...]
  /external/vixl/test/
test-fuzz-a64.cc 44 uint16_t seed[3] = {1, 2, 3}; local
45 seed48(seed);
62 uint16_t seed[3] = {42, 43, 44}; local
63 seed48(seed);
  /system/core/libmemunreachable/
Leak.h 32 std::size_t seed = 0; local
34 hash_combine(seed, key.num_frames);
36 hash_combine(seed, key.frames[i]);
39 return seed;
44 inline void hash_combine(std::size_t& seed, const T& v) const {
46 seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DHValidationParms.java 17 private DERBitString seed; field in class:DHValidationParms
39 public DHValidationParms(DERBitString seed, ASN1Integer pgenCounter)
41 if (seed == null)
43 throw new IllegalArgumentException("'seed' cannot be null");
50 this.seed = seed;
61 this.seed = DERBitString.getInstance(seq.getObjectAt(0));
67 return this.seed;
78 v.add(this.seed);
ValidationParams.java 16 * seed BIT STRING,
23 private DERBitString seed; field in class:ValidationParams
45 public ValidationParams(byte[] seed, int pgenCounter)
47 if (seed == null)
49 throw new IllegalArgumentException("'seed' cannot be null");
52 this.seed = new DERBitString(seed);
56 public ValidationParams(DERBitString seed, ASN1Integer pgenCounter)
58 if (seed == null)
60 throw new IllegalArgumentException("'seed' cannot be null")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DHValidationParameters.java 7 private byte[] seed; field in class:DHValidationParameters
11 byte[] seed,
14 this.seed = seed;
25 return seed;
43 return Arrays.areEqual(this.seed, other.seed);
48 return counter ^ Arrays.hashCode(seed);
DSAValidationParameters.java 8 private byte[] seed; field in class:DSAValidationParameters
12 byte[] seed,
15 this(seed, counter, -1);
19 byte[] seed,
23 this.seed = seed;
35 return seed;
45 return counter ^ Arrays.hashCode(seed);
63 return Arrays.areEqual(this.seed, other.seed);
    [all...]
ECDomainParameters.java 14 private byte[] seed; field in class:ECDomainParameters
41 byte[] seed)
47 this.seed = seed;
72 return Arrays.clone(seed);
  /external/fio/t/
axmap.c 21 static int test_regular(size_t size, int seed)
32 lfsr_init(&lfsr, size, seed, seed & 0xF);
126 int seed = 1; local
131 seed = strtoul(argv[2], NULL, 10);
134 if (test_regular(size, seed))
lfsr-test.c 16 printf("Usage: lfsr-test 0x<numbers> [seed] [spin] [verify]\n");
19 "seed: initial value\n"
34 uint64_t seed = 0; local
46 case 3: seed = atol(argv[2]);
60 r = lfsr_init(fl, numbers, seed, spin);
72 printf("Seed is %lu\n", (unsigned long) fl->last_val);
  /external/libopus/silk/
CNG.c 41 opus_int32 *rand_seed /* I/O Seed to random index generator */
44 opus_int32 seed; local
52 seed = *rand_seed;
54 seed = silk_RAND( seed );
55 idx = (opus_int)( silk_RSHIFT( seed, 24 ) & exc_mask );
60 *rand_seed = seed;
  /external/owasp/sanitizer/src/tests/org/owasp/html/
FuzzyTestCase.java 36 * A testcase that has a random seed.
38 * If you see a failure, please report it along with the seed from the output.
39 * If you want to repeat a failure, set the system property "junit.seed".
45 protected long seed = System.currentTimeMillis(); field in class:FuzzyTestCase
47 String seedStr = System.getProperty("junit.seed");
50 seed = Long.parseLong(seedStr);
66 rnd = new Random(seed);
  /external/ppp/pppd/
magic.c 62 * Attempts to compute a random number seed which will not repeat.
69 long seed; local
73 seed = get_host_seed() ^ t.tv_sec ^ t.tv_usec ^ getpid();
74 srand48(seed);
  /external/v8/src/base/
functional.h 69 V8_INLINE size_t hash_combine(size_t seed) { return seed; }
70 size_t hash_combine(size_t seed, size_t value);
79 size_t seed = 0; local
81 seed = hash_combine(seed, *first);
83 return seed;

Completed in 766 milliseconds

1 2 3 4 5 6 7 8 91011>>