/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/chromium_org/third_party/smhasher/src/ |
CityTest.cpp | 3 void CityHash64_test ( const void * key, int len, uint32_t seed, void * out ) 5 *(uint64*)out = CityHash64WithSeed((const char *)key,len,seed); 8 void CityHash128_test ( const void * key, int len, uint32_t seed, void * out ) 12 s.first = seed;
|
SpookyTest.cpp | 3 void SpookyHash32_test(const void *key, int len, uint32_t seed, void *out) { 4 *(uint32_t*)out = SpookyHash::Hash32(key, len, seed); 7 void SpookyHash64_test(const void *key, int len, uint32_t seed, void *out) { 8 *(uint64_t*)out = SpookyHash::Hash64(key, len, seed); 11 void SpookyHash128_test(const void *key, int len, uint32_t seed, void *out) { 12 uint64_t h1 = seed, h2 = seed;
|
Hashes.h | 12 void sumhash ( const void * key, int len, uint32_t seed, void * out ); 13 void sumhash32 ( const void * key, int len, uint32_t seed, void * out ); 15 void DoNothingHash ( const void * key, int len, uint32_t seed, void * out ); 16 void crc32 ( const void * key, int len, uint32_t seed, void * out ); 18 void randhash_32 ( const void * key, int len, uint32_t seed, void * out ); 19 void randhash_64 ( const void * key, int len, uint32_t seed, void * out ); 20 void randhash_128 ( const void * key, int len, uint32_t seed, void * out ); 25 void md5_32 ( const void * key, int len, uint32_t seed, void * out ); 26 void sha1_32a ( const void * key, int len, uint32_t seed, void * out ); 31 void FNV ( const void * key, int len, uint32_t seed, void * out ) [all...] |
/external/chromium_org/third_party/re2/util/ |
random.h | 17 ACMRandom(int32 seed) : seed_(seed) {} 21 void Reset(int32 seed) { seed_ = seed; }
|
/external/regex-re2/util/ |
random.h | 17 ACMRandom(int32 seed) : seed_(seed) {} 21 void Reset(int32 seed) { seed_ = seed; }
|
/external/chromium_org/chrome/browser/metrics/variations/ |
variations_seed_store_unittest.cc | 42 // Populates |seed| with simple test data. The resulting seed will contain one 44 // probability weight 100. |seed|'s study field will be cleared before adding 47 VariationsSeed seed; local 48 Study* study = seed.add_study(); 54 seed.set_serial_number("123"); 55 return seed; 58 // Serializes |seed| to protobuf binary format. 59 std::string SerializeSeed(const VariationsSeed& seed) { 61 seed.SerializeToString(&serialized_seed) 88 const VariationsSeed seed = CreateTestSeed(); local 129 const VariationsSeed seed = CreateTestSeed(); local 155 const VariationsSeed seed = CreateTestSeed(); local [all...] |
variations_seed_store.h | 22 // seed from Local State. 28 // Loads the variations seed data from local state into |seed|. If there is a 30 // successful, |seed| will contain the loaded data and true is returned. 31 bool LoadSeed(VariationsSeed* seed); 33 // Stores the given seed data (serialized protobuf data) to local state, along 34 // with a base64-encoded digital signature for seed and the date when it was 48 // Returns the serial number of the last loaded or stored seed. 67 // Verifies a variations seed (the serialized proto bytes) with the specified 80 // Clears all prefs related to variations seed storage [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
walslow.test | 31 for {set seed 1} {$seed<10} {incr seed} { 32 expr srand($seed) 35 do_test walslow-1.seed=$seed.0 { 43 do_test walslow-1.seed=$seed.$iTest.1 { 50 do_test walslow-1.seed=$seed.$iTest.2 [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/chromium_org/v8/src/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 121 int64_t seed = static_cast<int64_t>((product + kAddend) & kMask); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
DHValidationParms.java | 14 private DERBitString seed; field in class:DHValidationParms 37 public DHValidationParms(DERBitString seed, ASN1Integer pgenCounter) 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);
|
/libcore/luni/src/main/java/java/security/ |
SecureRandomSpi.java | 34 * seed}. The seed of this {@code SecureRandomSpi} instance is supplemented, 37 * @param seed 38 * the new seed. 40 protected abstract void engineSetSeed(byte[] seed); 52 * Generates and returns the specified number of seed bytes, computed using 53 * the seed generation algorithm used by this {@code SecureRandomSpi}. 56 * the number of seed bytes. 57 * @return the seed bytes
|
/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/chromium_org/chrome/renderer/safe_browsing/ |
murmurhash3_util.cc | 10 uint32 MurmurHash3String(const std::string& str, uint32 seed) { 12 MurmurHash3_x86_32(str.data(), str.size(), seed, &output);
|
/external/chromium_org/media/base/ |
djb2.cc | 7 uint32 DJB2Hash(const void* buf, size_t len, uint32 seed) { 9 uint32 hash = seed;
|
/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/ |
random.h | 14 // We don't actually use the seed. 15 explicit Random(int64 seed) {}
|
/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);
|