HomeSort by relevance Sort by last modified time
    Searched full:seed (Results 26 - 50 of 1468) sorted by null

12 3 4 5 6 7 8 91011>>

  /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/chromium_org/chrome/browser/sync/test/integration/
search_engines_helper.h 34 // Create a TemplateURL with some test values based on |seed|. The caller owns
37 int seed,
41 int seed,
46 // Add a search engine based on a seed to the service at index |profile_index|
48 void AddSearchEngine(int profile_index, int seed);
60 // generated by seed |seed|.
61 void DeleteSearchEngineBySeed(int profile_index, int seed);
63 // Change the search engine generated with |seed| in service at index
66 void ChangeDefaultSearchProvider(int profile_index, int seed);
    [all...]
  /libcore/luni/src/main/java/java/security/spec/
EllipticCurve.java 39 private final byte[] seed; field in class:EllipticCurve
46 * coefficients and seed.
54 * @param seed
55 * the seed used for the generation of the curve.
59 public EllipticCurve(ECField field, BigInteger a, BigInteger b, byte[] seed) {
73 if (seed == null) {
74 this.seed = null;
76 this.seed = new byte[seed.length];
77 System.arraycopy(seed, 0, this.seed, 0, this.seed.length)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECParameterSpec.java 16 private byte[] seed; field in class:ECParameterSpec
30 this.seed = null;
43 this.seed = null;
51 byte[] seed)
57 this.seed = seed;
97 * return the seed used to generate this curve (if available).
98 * @return the random seed
102 return seed;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
ECDomainParameters.java 14 private byte[] seed; field in class:ECDomainParameters
41 byte[] seed)
47 this.seed = seed;
72 return Arrays.clone(seed);
  /external/chromium_org/third_party/smhasher/src/
Hashes.cpp 15 void BadHash ( const void * key, int len, uint32_t seed, void * out )
17 uint32_t h = seed;
31 void sumhash ( const void * key, int len, uint32_t seed, void * out )
33 uint32_t h = seed;
45 void sumhash32 ( const void * key, int len, uint32_t seed, void * out )
47 uint32_t h = seed;
66 uint32_t MurmurOAAT ( const void * key, int len, uint32_t seed )
70 uint32_t h = seed;
82 void MurmurOAAT_test ( const void * key, int len, uint32_t seed, void * out )
84 *(uint32_t*)out = MurmurOAAT(key,len,seed);
    [all...]
SpeedTest.h 5 void BulkSpeedTest ( pfHash hash, uint32_t seed );
6 void TinySpeedTest ( pfHash hash, int hashsize, int keysize, uint32_t seed, bool verbose, double & outCycles );
  /hardware/intel/img/libdrm/libdrm/
xf86drmRandom.c 101 long seed; member in struct:RandomState
105 extern void *drmRandomCreate(unsigned long seed);
111 void *drmRandomCreate(unsigned long seed)
132 state->seed = seed;
135 if (state->seed <= 0) state->seed = 1;
136 if (state->seed >= state->m) state->seed = state->m - 1;
153 hi = s->seed / s->q
    [all...]
  /external/fio/lib/
rand.c 45 static void __init_rand(struct frand_state *state, unsigned int seed)
49 #define LCG(x, seed) ((x) * 69069 ^ (seed))
51 state->s1 = __seed(LCG((2^31) + (2^17) + (2^7), seed), 1);
52 state->s2 = __seed(LCG(state->s1, seed), 7);
53 state->s3 = __seed(LCG(state->s2, seed), 15);
64 void init_rand_seed(struct frand_state *state, unsigned int seed)
66 __init_rand(state, seed);
69 void __fill_random_buf(void *buf, unsigned int len, unsigned long seed)
74 *ptr = seed;
    [all...]
  /external/deqp/framework/randomshaders/
rsgTest.cpp 37 void runTest (deUint32 seed)
39 printf("Seed: %d\n", seed);
46 programParams.seed = seed;
62 de::Random rnd(seed);
72 string fileName = string("test-") + de::toString(seed) + ".png";
86 for (int seed = 0; seed < 10; seed++
    [all...]
  /external/llvm/lib/Support/
RandomNumberGenerator.cpp 28 Seed("rng-seed", cl::value_desc("seed"),
29 cl::desc("Seed for the random number generator"), cl::init(0));
33 if (Seed == 0)
37 // Combine seed and salt using std::seed_seq.
38 // Entropy: Seed-low, Seed-high, Salt...
41 Data.push_back(Seed);
42 Data.push_back(Seed >> 32)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
random-weight.h 41 TropicalWeightGenerator(int seed = time(0), bool allow_zero = true)
43 srand(seed);
68 LogWeightGenerator(int seed = time(0), bool allow_zero = true)
70 srand(seed);
96 StringWeightGenerator(int seed = time(0), bool allow_zero = true)
98 srand(seed);
131 ProductWeightGenerator(int seed = time(0), bool allow_zero = true)
132 : generator1_(seed, allow_zero), generator2_(seed, allow_zero) {}
156 GallicWeightGenerator(int seed = time(0), bool allow_zero = true
    [all...]
  /external/wpa_supplicant_8/src/crypto/
sha1-tlsprf.c 21 * @seed: Seed value to bind into the key
22 * @seed_len: Length of the seed
31 const u8 *seed, size_t seed_len, u8 *out, size_t outlen)
50 MD5_addr[2] = seed;
57 SHA1_addr[2] = seed;
61 * A(0) = seed, A(i) = HMAC(secret, A(i-1))
62 * P_hash = HMAC(secret, A(1) + seed) + HMAC(secret, A(2) + seed) + ..
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed
    [all...]
  /external/chromium_org/build/android/pylib/monkey/
test_options.py 15 'seed',
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
acm_random.h 24 explicit ACMRandom(int seed) : random_(seed) {}
26 void Reset(int seed) {
27 random_.Reseed(seed);
  /external/chromium_org/third_party/webrtc/base/
helpers.cc 45 virtual bool Init(const void* seed, size_t len) = 0;
57 virtual bool Init(const void* seed, size_t len) {
58 // By default, seed from the system state.
66 if (seed) {
67 RAND_seed(seed, len);
88 virtual bool Init(const void* seed, size_t len) {
106 virtual bool Init(const void* seed, size_t seed_len) {
146 virtual bool Init(const void* seed, size_t len) {
148 srand(*reinterpret_cast<const int*>(seed));
150 srand(*reinterpret_cast<const char*>(seed));
    [all...]
  /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/libvpx/libvpx/test/
acm_random.h 24 explicit ACMRandom(int seed) : random_(seed) {}
26 void Reset(int seed) {
27 random_.Reseed(seed);
  /external/llvm/docs/CommandGuide/
llvm-stress.rst 7 :program:`llvm-stress` [-size=filesize] [-seed=initialseed] [-o=outfile]
26 .. option:: -seed seed
28 Specify the seed to be used for the randomly generated instructions.
  /external/wpa_supplicant_8/src/eap_common/
eap_peap_common.h 13 const char *label, const u8 *seed, size_t seed_len,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
acm_random.h 24 explicit ACMRandom(int seed) : random_(seed) {}
26 void Reset(int seed) {
27 random_.Reseed(seed);
  /packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
dmtSessionProp.cc 12 /* The current time is given as seed for generating
  /external/chromium_org/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/guava/guava/src/com/google/common/hash/
Murmur3_32HashFunction.java 30 private final int seed; field in class:Murmur3_32HashFunction
32 Murmur3_32HashFunction(int seed) {
33 this.seed = seed;
41 return new Murmur3_32Hasher(seed);
50 Murmur3_32Hasher(int seed) {
52 h1 = 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);

Completed in 1903 milliseconds

12 3 4 5 6 7 8 91011>>