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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/platform/
PODIntervalTreeTest.cpp 219 void InsertionAndDeletionTest(int32_t seed, int treeSize)
221 initRandom(seed);
244 ASSERT_TRUE(tree.contains(addedElements[index])) << "Test failed for seed " << seed;
248 ASSERT_TRUE(tree.checkInvariants()) << "Test failed for seed " << seed;
272 ASSERT_TRUE(tree.contains(addedElements[index])) << "Test failed for seed " << seed;
273 ASSERT_TRUE(tree.remove(addedElements[index])) << "Test failed for seed " << seed;
    [all...]
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.h 15 void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
17 void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
19 void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive_tester.h 49 void RandomStrings(int32 seed, int32 count) {
51 stringseed_ = seed;
64 int32 stringseed_; // If so, the seed.
  /external/chromium_org/third_party/skia/animations/
lines#1.xml 4 <random id="rRed" min="0" max="255" seed="1900" />
5 <random id="rBlue" min="0" max="255" seed="50000" />
6 <random id="rGreen" min="0" max="255" seed="99" />
  /external/chromium_org/third_party/smhasher/src/
MurmurHash3.h 29 void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
31 void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
33 void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );
MurmurHash2.cpp 37 uint32_t MurmurHash2 ( const void * key, int len, uint32_t seed )
47 uint32_t h = seed ^ len;
96 uint64_t MurmurHash64A ( const void * key, int len, uint64_t seed )
101 uint64_t h = seed ^ (len * m);
142 uint64_t MurmurHash64B ( const void * key, int len, uint64_t seed )
147 uint32_t h1 = uint32_t(seed) ^ len;
148 uint32_t h2 = uint32_t(seed >> 32);
206 uint32_t MurmurHash2A ( const void * key, int len, uint32_t seed )
214 uint32_t h = seed;
254 // hasher.Begin(seed);
    [all...]
  /external/jemalloc/test/unit/
rtree.c 72 #define SEED 42
74 sfmt = init_gen_rand(SEED);
105 #undef SEED
  /external/llvm/include/llvm/Support/
RandomNumberGenerator.h 31 /// is passed into the constructor. The seed can be set on the command
32 /// line via -rng-seed=<uint64>.
34 /// the same seed is used for multiple invocations of the compiler.
  /external/pixman/test/
composite.c 448 run_test (uint32_t seed)
455 prng_srand (seed);
468 ok = composite_test (&dst, op, &src, NULL, FALSE, seed);
471 ok = composite_test (&dst, op, &src, &mask, FALSE, seed);
475 mask.size? TRUE : FALSE, seed);
494 uint32_t seed; local
518 seed = get_random_seed();
520 seed = 1;
523 # pragma omp parallel for default(none) shared(result, argv, seed)
527 if (!result && !run_test (i + seed))
    [all...]
  /external/regex-re2/re2/testing/
exhaustive_tester.h 49 void RandomStrings(int32 seed, int32 count) {
51 stringseed_ = seed;
64 int32 stringseed_; // If so, the seed.
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SecureRandom2Test.java 116 byte[] seed = new SecureRandom().generateSeed(SEED_SIZE);
117 assertEquals("seed has incorrect size", SEED_SIZE, seed.length);
177 byte[] seed = SecureRandom.getSeed(SEED_SIZE);
178 assertEquals("seed has incorrect size", SEED_SIZE, seed.length);
216 fail("seed generation with bytes failed : " + e);
235 fail("seed generation with long failed : " + e);
298 * with the same seed, should return the same results.<p>
320 * seed always returns the same value, even across VM restarts
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_random.h 37 \param r seed
53 \param r seed
73 \param r_seed random number generator seed
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_random.h 37 \param r seed
53 \param r seed
73 \param r_seed random number generator seed
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1PRNG_SecureRandomTest.java 123 * being supplied with the same seed return the same sequencies of bytes
188 * being supplied with seed by themselves return different sequencies of bytes
335 * it checks out that "setSeed(byte[])" method supplements its argument to current seed
336 * rather than replaces current seed
341 byte[] seed = new byte[LENGTH];
346 for (int i = 0; i < seed.length; i++) {
347 seed[i] = (byte) i;
350 sr.setSeed(seed);
351 sr.setSeed(seed);
352 sr2.setSeed(seed);
    [all...]
  /external/libyuv/files/source/
compare.cc 28 // hash seed of 5381 recommended.
30 static uint32 HashDjb2_C(const uint8* src, int count, uint32 seed) {
31 uint32 hash = seed;
76 static uint32 HashDjb2_SSE41(const uint8* src, int count, uint32 seed) {
80 movd xmm0, [esp + 12] // seed
160 static uint32 HashDjb2_SSE41(const uint8* src, int count, uint32 seed) {
202 "+rm"(seed), // %2
218 // hash seed of 5381 recommended.
220 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed) {
221 uint32 (*HashDjb2_SSE)(const uint8* src, int count, uint32 seed) = HashDjb2_C
    [all...]
  /external/chromium_org/components/rappor/
rappor_pref_names.cc 16 // A base-64 encoded, randomly generated byte string, which is used as a seed
  /external/chromium_org/components/variations/
variations_seed_simulator.h 27 // The result of variations seed simulation, counting the number of experiment
29 // seed.
53 // the result of evaluating |seed| with the given parameters. Returns the
56 Result SimulateSeedStudies(const VariationsSeed& seed,
  /external/chromium_org/third_party/freetype/src/psaux/
psconv.h 63 FT_UShort* seed );
  /external/chromium_org/third_party/re2/util/
util.h 120 static inline uint32 Hash32StringWithSeed(const char* s, int len, uint32 seed) {
121 return hashword((uint32*)s, len/4, seed);
124 static inline uint64 Hash64StringWithSeed(const char* s, int len, uint32 seed) {
126 x = seed;
  /external/chromium_org/third_party/sqlite/src/test/
corruptC.test 74 # Set a quasi-random random seed.
77 # random seed for each run. Ideally we would like
92 # test that a corrupt content offset size is handled (seed 5577)
104 # test that a corrupt content offset size is handled (seed 5649)
125 # test that a corrupt free cell size is handled (seed 13329)
137 # test that a corrupt free cell size is handled (seed 169571)
149 # test that a corrupt free cell size is handled (seed 169571)
169 # test that a corrupt free cell size is handled (seed 169595)
182 # corruption (seed 178692)
194 # corruption (seed 179069
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
packet_manipulator.cc 83 void PacketManipulatorImpl::InitializeRandomSeed(unsigned int seed) {
84 random_seed_ = seed;
88 // Use the previous result as new seed before each rand() call. Doing this
90 // get the same behavior as long as we're using a fixed initial seed.
  /external/e2fsprogs/tests/
filter.sed 4 /^Directory Hash Seed:/d
  /external/freetype/src/psaux/
psconv.h 63 FT_UShort* seed );
  /external/icu/icu4c/source/test/intltest/
ssearch.h 43 const char *name, const char *strength, uint32_t seed);
  /external/iptables/extensions/
libxt_cluster.man 17 \fB\-\-cluster\-hash\-seed\fP \fIvalue\fP
18 Set seed value of the Jenkins hash.
24 \-\-cluster\-hash\-seed 0xdeadbeef
29 \-\-cluster\-hash\-seed 0xdeadbeef

Completed in 573 milliseconds

1 2 3 4 5 6 7 891011>>