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

<<11121314151617181920>>

  /external/chromium_org/net/quic/
port_suggester.h 26 PortSuggester(const HostPortPair& server, uint64 seed);
  /external/chromium_org/third_party/WebKit/ManualTests/
scrolling-nestedframesets.html 7 <p><b>BUG ID:</b> <a href="rdar://problem/4361048">4361048</a> Glendale Regression: Seed: scrolling with scrollwheel, trackpad doesn't work for nested framesets at gmail.com</p>
  /external/chromium_org/third_party/libyuv/source/
compare_win.cc 139 uint32 HashDjb2_SSE41(const uint8* src, int count, uint32 seed) {
143 movd xmm0, [esp + 12] // seed
191 uint32 HashDjb2_AVX2(const uint8* src, int count, uint32 seed) {
195 movd xmm0, [esp + 12] // seed
  /external/chromium_org/third_party/mt19937ar/
mt19937ar.cc 5 Before using, initialize the state by using init_genrand(seed)
59 /* initializes mt[N] with a seed */
67 /* In the previous versions, MSBs of the seed affect */
115 init_genrand(5489UL); /* a default initial seed is used */
  /external/chromium_org/third_party/re2/patches/
remove-valgrind-code.patch 27 @@ -119,8 +121,6 @@ static inline uint64 Hash64StringWithSeed(const char* s, int len, uint32 seed) {
  /external/chromium_org/third_party/re2/re2/testing/
string_generator.h 31 void Random(int32 seed, int n);
  /external/chromium_org/third_party/skia/include/core/
SkChecksum.h 47 * @param seed Initial hash seed. (optional)
50 static uint32_t Murmur3(const uint32_t* data, size_t bytes, uint32_t seed=0) {
54 uint32_t hash = seed;
  /external/chromium_org/third_party/skia/third_party/lua/src/
lstring.c 51 unsigned int luaS_hash (const char *str, size_t l, unsigned int seed) {
52 unsigned int h = seed ^ cast(unsigned int, l);
136 unsigned int h = luaS_hash(str, l, g->seed);
162 return createstrobj(L, str, l, LUA_TLNGSTR, G(L)->seed, NULL);
lstring.h 37 LUAI_FUNC unsigned int luaS_hash (const char *str, size_t l, unsigned int seed);
  /external/chromium_org/third_party/smhasher/src/
City.cpp 238 uint64 CityHash64WithSeed(const char *s, size_t len, uint64 seed) {
239 return CityHash64WithSeeds(s, len, k2, seed);
249 static uint128 CityMurmur(const char *s, size_t len, uint128 seed) {
250 uint64 a = Uint128Low64(seed);
251 uint64 b = Uint128High64(seed);
279 uint128 CityHash128WithSeed(const char *s, size_t len, uint128 seed) {
281 return CityMurmur(s, len, seed);
287 uint64 x = Uint128Low64(seed);
288 uint64 y = Uint128High64(seed);
359 uint32 seed, uint64 *result)
    [all...]
MurmurHash1.cpp 20 uint32_t MurmurHash1 ( const void * key, int len, uint32_t seed )
26 unsigned int h = seed ^ (len * m);
76 unsigned int MurmurHash1Aligned ( const void * key, int len, unsigned int seed )
83 unsigned int h = seed ^ (len * m);
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
test.cc 34 unsigned int seed = static_cast<unsigned int>(0); local
35 srand(seed);
49 unsigned int seed = static_cast<unsigned int>(0); local
50 srand(seed);
  /external/chromium_org/v8/test/mjsunit/
sparse-array-reverse.js 57 var seed = 43; variable
62 seed = (69069 * seed + 1234567) % 0x100000000;
63 return (seed & 0x100000) != 0;
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerTest.java 60 // seed the map, so its segment's count > 0
81 // At this point, the listener should be holding the seed value (a -> a), and the map should
120 // seed the map, so its segments have a count>0; otherwise, clear() won't visit the in-progress
161 // All of the seed values should have been visible, so we should have gotten removal
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 43 byte[] hash(byte[] input, int seed);
52 // Hash keys of the form {}, {0}, {0,1}, {0,1,2}... up to N=255,using 256-N as the seed
55 int seed = 256 - i; local
56 byte[] hash = hashFunction.hash(Arrays.copyOf(key, i), seed);
  /external/iptables/extensions/
libipt_CLUSTERIP.man 24 Specify the random seed used for hash initialization.
libxt_cluster.c 20 " --cluster-hash-seed <num> Set seed value of the Jenkins hash\n");
46 {.name = "cluster-hash-seed", .id = O_CL_HASH_SEED,
125 printf(" --cluster-total-nodes %u --cluster-hash-seed 0x%08x",
  /external/llvm/test/CodeGen/Mips/
2013-11-18-fp64-const0.ll 5 ; seed=3718491962.
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlPolicyBuilderFuzzerTest.java 51 * If you see a failure, please report it along with the seed from the output.
52 * If you want to repeat a failure, set the system property "junit.seed".
131 System.err.println("Using seed " + seed + "L");
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
psconv.h 66 FT_UShort* seed );
  /external/regex-re2/re2/testing/
string_generator.h 31 void Random(int32 seed, int n);
  /external/skia/include/core/
SkChecksum.h 47 * @param seed Initial hash seed. (optional)
50 static uint32_t Murmur3(const uint32_t* data, size_t bytes, uint32_t seed=0) {
54 uint32_t hash = seed;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
randgen.h 46 UniformArcSelector(int seed = time(0)) { srand(seed); }
67 LogProbArcSelector(int seed = time(0)) { srand(seed); }
  /frameworks/compile/mclinker/include/mcld/Support/
SystemUtils.h 34 /// SetRandomSeed - set the initial seed value for future calls to random().
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SecureRandomSpiTest.java 52 protected void engineSetSeed(byte[] seed) {}

Completed in 1487 milliseconds

<<11121314151617181920>>