Searched defs:seed (Results 1 - 25 of 206) sorted by relevance

123456789

/external/e2fsprogs/lib/uuid/
H A Dgen_uuid_nt.c48 void* seed // 6 bytes
85 unsigned char seed[6]; local
86 ((NtAllocateUuids_2000)NtAllocateUuids)(out, ((char*)out)+8, ((char*)out)+12, &seed[0] );
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dfips_prf_cryptoapi.c15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_gnutls.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_nss.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
/external/wpa_supplicant_8/src/crypto/
H A Dfips_prf_cryptoapi.c15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_gnutls.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_nss.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dfips_prf_cryptoapi.c15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_gnutls.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_nss.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
/external/elfutils/lib/
H A Dnext_prime.c77 next_prime (size_t seed) argument
80 seed |= 1;
82 while (!is_prime (seed))
83 seed += 2;
85 return seed;
/external/openfst/src/script/
H A Drandgen.cc24 void RandGen(const FstClass &ifst, MutableFstClass *ofst, int32 seed, argument
28 RandGenArgs args(ifst, ofst, seed, opts);
H A Drandequivalent.cc26 int32 seed, ssize_t num_paths, float delta,
29 RandEquivalentInnerArgs1 args(fst1, fst2, seed, num_paths, delta,
39 bool RandEquivalent(const FstClass &fst1, const FstClass &fst2, int32 seed, argument
44 RandEquivalentInnerArgs2 args(fst1, fst2, seed, num_paths, delta, opts);
25 RandEquivalent(const FstClass &fst1, const FstClass &fst2, int32 seed, ssize_t num_paths, float delta, int path_length) argument
/external/regex-re2/util/
H A Drandom.h17 ACMRandom(int32 seed) : seed_(seed) {} argument
21 void Reset(int32 seed) { seed_ = seed; } argument
/external/webkit/Source/WebKit/chromium/tests/
H A DTreeTestHelpers.cpp38 // A seed of 1 has the special behavior of resetting the random
41 int32_t seed; local
43 seed = static_cast<int32_t>(currentTime());
44 } while (seed <= 1);
45 return seed;
48 void initRandom(const int32_t seed) argument
50 srand(seed);
/external/v8/test/mjsunit/
H A Dsparse-array-reverse.js57 var seed = 43; variable
62 seed = (69069 * seed + 1234567) % 0x100000000;
63 return (seed & 0x100000) != 0;
/external/webkit/Source/JavaScriptCore/runtime/
H A DWeakRandom.h60 WeakRandom(unsigned seed) argument
61 : m_low(seed ^ 0x49616E42)
62 , m_high(seed)
/external/webrtc/src/common_audio/signal_processing/
H A Drandomization_functions.c92 WebRtc_UWord32 WebRtcSpl_IncreaseSeed(WebRtc_UWord32 *seed) argument
94 seed[0] = (seed[0] * ((WebRtc_Word32)69069) + 1) & (WEBRTC_SPL_MAX_SEED_USED - 1);
95 return seed[0];
98 WebRtc_Word16 WebRtcSpl_RandU(WebRtc_UWord32 *seed) argument
100 return (WebRtc_Word16)(WebRtcSpl_IncreaseSeed(seed) >> 16);
103 WebRtc_Word16 WebRtcSpl_RandN(WebRtc_UWord32 *seed) argument
105 return kRandNTable[WebRtcSpl_IncreaseSeed(seed) >> 23];
111 WebRtc_UWord32* seed)
116 vector[i] = WebRtcSpl_RandU(seed);
109 WebRtcSpl_RandUArray(WebRtc_Word16* vector, WebRtc_Word16 vector_length, WebRtc_UWord32* seed) argument
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DRandomImpl.java35 protected void engineSetSeed(byte[] seed) { argument
/external/arduino/hardware/arduino/cores/arduino/
H A DWMath.cpp30 void randomSeed(unsigned int seed) argument
32 if (seed != 0) {
33 srandom(seed);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DDHValidationParms.java14 private DERBitString seed; field in class:DHValidationParms
37 public DHValidationParms(DERBitString seed, ASN1Integer pgenCounter) argument
39 if (seed == null)
41 throw new IllegalArgumentException("'seed' cannot be null");
48 this.seed = seed;
59 this.seed = DERBitString.getInstance(seq.getObjectAt(0));
65 return this.seed;
76 v.add(this.seed);
H A DX9Curve.java25 private byte[] seed; field in class:X9Curve
32 this.seed = null;
38 byte[] seed)
41 this.seed = seed;
98 seed = ((DERBitString)seq.getObjectAt(2)).getBytes();
126 return seed;
135 * seed BIT STRING OPTIONAL
154 if (seed != null)
156 v.add(new DERBitString(seed));
36 X9Curve( ECCurve curve, byte[] seed) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHValidationParameters.java7 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);
10 DHValidationParameters( byte[] seed, int counter) argument
H A DDSAValidationParameters.java7 private byte[] seed; field in class:DSAValidationParameters
11 byte[] seed,
14 this.seed = seed;
25 return seed;
30 return counter ^ Arrays.hashCode(seed);
48 return Arrays.areEqual(this.seed, other.seed);
10 DSAValidationParameters( byte[] seed, int counter) argument
H A DECDomainParameters.java13 byte[] seed; field in class:ECDomainParameters
27 this.seed = null;
40 this.seed = null;
48 byte[] seed)
54 this.seed = seed;
79 return seed;
43 ECDomainParameters( ECCurve curve, ECPoint G, BigInteger n, BigInteger h, byte[] seed) argument

Completed in 412 milliseconds

123456789