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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/f_h_reindex/
name 1 reindex HTREE Directory with different hash seed
  /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...]
  /external/fio/crc/
murmur3.h 6 uint32_t murmurhash3(const void *key, uint32_t len, uint32_t seed);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
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...]
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);
  /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/deqp/modules/internal/
ditSeedBuilderTests.cpp 21 * \brief Seed builder tests.
44 SeedBuilderTest (tcu::TestContext& testCtx, const T& value, deUint32 seed, const char* name, const char* description)
47 , m_seed (seed)
59 log << TestLog::Message << "Expected seed: " << m_seed << TestLog::EndMessage;
60 log << TestLog::Message << "Got seed: " << builder.get() << TestLog::EndMessage;
63 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid seed");
79 : tcu::TestCase(testCtx, "multiple_values", "Test that multiple values all change the seed.")
98 log << TestLog::Message << "Value a: " << a << ", Seed a: " << builderA.get() << TestLog::EndMessage;
99 log << TestLog::Message << "Value b: " << b << ", Seed b: " << builderB.get() << TestLog::EndMessage;
100 log << TestLog::Message << "Seed ab: " << builderAB.get() << TestLog::EndMessage
    [all...]
  /external/regex-re2/util/
random.h 17 ACMRandom(int32 seed) : seed_(seed) {}
21 void Reset(int32 seed) { seed_ = seed; }
  /external/llvm/lib/Fuzzer/test/
fuzzer-traces.test 4 RUN: not LLVMFuzzer-SimpleCmpTest -use_traces=1 -seed=1 -runs=1000001 2>&1 | FileCheck %s
6 RUN: not LLVMFuzzer-MemcmpTest -use_traces=1 -seed=4294967295 -runs=100000 2>&1 | FileCheck %s
7 RUN: LLVMFuzzer-MemcmpTest -seed=4294967295 -runs=1000000 2>&1 | FileCheck %s --check-prefix=Done1000000
9 RUN: not LLVMFuzzer-StrncmpTest -use_traces=1 -seed=1 -runs=100000 2>&1 | FileCheck %s
10 RUN: LLVMFuzzer-StrncmpTest -seed=1 -runs=1000000 2>&1 | FileCheck %s --check-prefix=Done1000000
12 RUN: not LLVMFuzzer-StrcmpTest -use_traces=1 -seed=1 -runs=200000 2>&1 | FileCheck %s
13 RUN: LLVMFuzzer-StrcmpTest -seed=1 -runs=1000000 2>&1 | FileCheck %s --check-prefix=Done1000000
15 RUN: not LLVMFuzzer-SwitchTest -use_traces=1 -seed=1 -runs=1000002 2>&1 | FileCheck %s
16 RUN: LLVMFuzzer-SwitchTest -seed=1 -runs=1000000 2>&1 | FileCheck %s --check-prefix=Done1000000
18 RUN: not LLVMFuzzer-SimpleHashTest -use_traces=1 -seed=1 -runs=100000 2>&1 | FileCheck %
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
AbstractWell.java 65 * seed.</p>
75 /** Creates a new random number generator using a single int seed.
80 * @param seed the initial seed (32 bits integer)
82 protected AbstractWell(final int k, final int m1, final int m2, final int m3, final int seed) {
83 this(k, m1, m2, m3, new int[] { seed });
86 /** Creates a new random number generator using an int array seed.
91 * @param seed the initial seed (32 bits integers array), if null
92 * the seed of the generator will be related to the current tim
    [all...]
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...]
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...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
random.c 27 Word16 Random(Word16 * seed)
29 /* static Word16 seed = 21845; */
30 *seed = (Word16)(L_add((L_mult(*seed, 31821) >> 1), 13849L));
31 return (*seed);
  /external/deqp/modules/gles2/functional/
es2fRandomShaderTests.cpp 38 gls::RandomShaderCase* createRandomShaderCase (Context& context, const char* description, const rsg::ProgramParameters& baseParams, deUint32 seed, bool vertex, bool fragment)
42 params.seed = seed;
46 return new gls::RandomShaderCase(context.getTestContext(), context.getRenderContext(), de::toString(seed).c_str(), description, params);
70 for (int seed = 0; seed < 100; seed++)
72 vertexGroup->addChild(createRandomShaderCase(m_context, "Random expressions in vertex shader", params, seed, true, false));
73 fragmentGroup->addChild(createRandomShaderCase(m_context, "Random expressions in fragment shader", params, seed, false, true));
74 combinedGroup->addChild(createRandomShaderCase(m_context, "Random expressions in vertex and fragment shaders", params, seed, true, true))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fRandomShaderTests.cpp 39 gls::RandomShaderCase* createRandomShaderCase (Context& context, const char* description, const rsg::ProgramParameters& baseParams, deUint32 seed, bool vertex, bool fragment)
44 params.seed = seed;
48 return new gls::RandomShaderCase(context.getTestContext(), context.getRenderContext(), de::toString(seed).c_str(), description, params);
72 for (int seed = 0; seed < 100; seed++)
74 vertexGroup->addChild(createRandomShaderCase(m_context, "Random expressions in vertex shader", params, seed, true, false));
75 fragmentGroup->addChild(createRandomShaderCase(m_context, "Random expressions in fragment shader", params, seed, false, true));
76 combinedGroup->addChild(createRandomShaderCase(m_context, "Random expressions in vertex and fragment shaders", params, seed, true, true))
    [all...]
  /external/wpa_supplicant_8/src/crypto/
sha256-tlsprf.c 20 * @seed: Seed value to bind into the key
21 * @seed_len: Length of the seed
30 const u8 *seed, size_t seed_len, u8 *out, size_t outlen)
43 addr[2] = seed;
48 * A(0) = seed, A(i) = HMAC(secret, A(i-1))
49 * P_hash = HMAC(secret, A(1) + seed) + HMAC(secret, A(2) + seed) + ..
50 * PRF(secret, label, seed) = P_SHA256(secret, label + seed)
    [all...]
  /external/compiler-rt/test/msan/
rand_r.cc 9 unsigned seed; local
11 seed = 42;
13 int v = rand_r(&seed);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 92 // MAX_BYTES - maximum # of seed bytes processing which doesn't require extra frame
93 // see (1) comments on usage of "seed" array below and
118 // Structure of "seed" array:
121 // - 81 - # of seed bytes in current seed frame
122 // - 82-86 - 5 words, current seed hash
123 private transient int[] seed; field in class:SHA1PRNG_SecureRandomImpl
125 // total length of seed bytes, including all processed
129 // - 0-4 - 5 words, copy of current seed hash
147 // The "seed" array is used to compute both "current seed hash" and "next bytes"
    [all...]
  /external/autotest/client/site_tests/kernel_PerfEventRename/src/
perf-rename-test.c 14 static int do_something(int seed, unsigned int loops) {
17 seed ^= i;
18 seed = (seed << 1) ^ (i & 0x80000000 ? 0x04C11DB7 : 0);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/
tox.ini 15 # seed for Python 2.x until all tests are updated for Python 3.
16 # Hash seed affects ordering of certain objects like dict keys
25 # See comment above in py26 about hash seed.
30 # See comment above in py26 about hash seed.
  /external/v8/src/base/utils/
random-number-generator.cc 34 int64_t seed; local
35 if (entropy_source(reinterpret_cast<unsigned char*>(&seed),
36 sizeof(seed))) {
37 SetSeed(seed);
56 int64_t seed; local
57 size_t n = fread(&seed, sizeof(seed), 1, fp);
60 SetSeed(seed);
67 // we just seed our PRNG using timing data as fallback.
73 int64_t seed = Time::NowFromSystemTime().ToInternalValue() << 24 local
    [all...]
  /external/fio/lib/
lfsr.h 27 unsigned long seed, unsigned int spin);
28 int lfsr_reset(struct fio_lfsr *fl, unsigned long seed);
zipf.h 17 void zipf_init(struct zipf_state *zs, unsigned long nranges, double theta, unsigned int seed);
20 void pareto_init(struct zipf_state *zs, unsigned long nranges, double h, unsigned int seed);

Completed in 1035 milliseconds

1 2 3 4 5 6 7 8 91011>>