/external/chromium_org/third_party/skia/third_party/lua/src/ |
lstate.c | 46 ** a macro to help the creation of a unique random seed when a state is 47 ** created; the seed is used to randomize hashes. 81 ** Compute an initial seed as random as possible. In ANSI, rely on 279 g->seed = makeseed(L);
|
/external/chromium_org/third_party/smhasher/src/ |
SuperFastHash.cpp | 73 void SuperFastHash ( const void * key, int len, uint32_t /*seed*/, void * out )
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
memalign_unittest.cc | 111 static void Fill(void* p, int n, char seed) { 114 buffer[i] = ((seed + i) & 0xff); 120 static bool Valid(const void* p, int n, char seed) { 123 if (buffer[i] != ((seed + i) & 0xff)) {
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
memalign_unittest.cc | 111 static void Fill(void* p, int n, char seed) { 114 buffer[i] = ((seed + i) & 0xff); 120 static bool Valid(const void* p, int n, char seed) { 123 if (buffer[i] != ((seed + i) & 0xff)) {
|
/external/deqp/framework/delibs/decpp/ |
deBlockBuffer.cpp | 231 Producer (BlockBuffer<deUint8>* buffer, deUint32 seed) 233 , m_seed (seed) 268 Consumer (BlockBuffer<deUint8>* buffer, deUint32 seed) 270 , m_seed (seed)
|
/external/fio/ |
verify.h | 81 extern void fill_verify_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed);
|
/external/freetype/src/psaux/ |
psobjs.h | 204 FT_UShort seed );
|
/external/jemalloc/include/jemalloc/internal/ |
prng.h | 25 * uint32_t state : Seed value.
|
/external/libopus/silk/ |
encode_indices.c | 177 /* Encode seed */ 179 silk_assert( psIndices->Seed >= 0 && psIndices->Seed < 4 ); 180 ec_enc_icdf( psRangeEnc, psIndices->Seed, silk_uniform4_iCDF, 8 );
|
/external/llvm/test/CodeGen/Mips/msa/ |
llvm-stress-s449609655-simplified.ll | 6 ; This test is based on an llvm-stress generated test case with seed=449609655
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
KeyFactory.java | 182 int seed = 0; local 190 seed += parameterTypes[i].hashCode(); 204 int hc = (constant != 0) ? constant : PRIMES[(int)(Math.abs(seed) % PRIMES.length)]; 205 int hm = (multiplier != 0) ? multiplier : PRIMES[(int)(Math.abs(seed * 13) % PRIMES.length)];
|
/external/openssl/crypto/rand/ |
rand_lib.c | 149 if (meth && meth->seed) 150 meth->seed(buf,num); 190 /* Entropy gatherer: use standard OpenSSL PRNG to seed (this will gather 247 RAND_SSLeay()->seed(in, inlen);
|
/external/skia/src/effects/ |
SkPerlinNoiseShader.cpp | 81 PaintingData(const SkISize& tileSize, SkScalar seed, 86 this->init(seed); 128 void init(SkScalar seed) 132 // According to the SVG spec, we must truncate (not round) the seed value. 133 fSeed = SkScalarTruncToInt(seed); 134 // The seed value clamp to the range [1, kRandMaximum - 1]. 250 int numOctaves, SkScalar seed, 253 numOctaves, seed, tileSize)); 257 int numOctaves, SkScalar seed, 260 numOctaves, seed, tileSize)) [all...] |
/external/skia/tests/ |
ChecksumTest.cpp | 13 // Murmur3 has an optional third seed argument, so we wrap it to fit a uniform type.
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
System.inc | 47 /// srandom - set the initial seed value for future calls to random().
|
/art/runtime/gc/accounting/ |
space_bitmap_test.cc | 103 explicit RandGen(uint32_t seed) : val_(seed) {} 118 // Seed with 0x1234 for reproducability.
|
/external/bison/lib/ |
stdlib.in.h | 548 _GL_FUNCDECL_SYS (srandom, void, (unsigned int seed)); 550 _GL_CXXALIAS_SYS (srandom, void, (unsigned int seed)); 563 (unsigned int seed, char *buf, size_t buf_size) 567 (unsigned int seed, char *buf, size_t buf_size)); 624 (unsigned int seed, struct random_data *rand_state) 627 (unsigned int seed, struct random_data *rand_state)); 631 (unsigned int seed, struct random_data *rand_state) 635 (unsigned int seed, struct random_data *rand_state)); 653 (unsigned int seed, char *buf, size_t buf_size, 657 (unsigned int seed, char *buf, size_t buf_size [all...] |
/external/chromium_org/chrome/browser/prefs/ |
profile_pref_store_manager.cc | 39 const std::string& seed, 45 seed_(seed), 195 // complete before Chrome can start (as master preferences seed the Local
|
/external/chromium_org/net/spdy/ |
hpack_round_trip_test.cc | 140 int seed = std::time(NULL); local 141 LOG(INFO) << "Seeding with srand(" << seed << ")"; 142 srand(seed);
|
/external/chromium_org/net/tools/quic/test_tools/ |
packet_dropping_test_writer.cc | 58 uint32 seed = base::RandInt(0, std::numeric_limits<int32>::max()); local 59 VLOG(1) << "Seeding packet loss with " << seed; 60 simple_random_.set_seed(seed);
|
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
video_source.h | 145 RandomVideoSource(int seed = ACMRandom::DeterministicSeed()) 146 : rnd_(seed), 147 seed_(seed) { }
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/ |
mkvmuxerutil.hpp | 131 // Returns a random number to be used for UID, using |seed| to seed 133 uint64 MakeUID(unsigned int* seed);
|
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsagen.c | 72 unsigned char seed[20]={ variable 105 memcpy(seed_buf,seed,20); 106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
|
/external/chromium_org/third_party/skia/tests/ |
NameAllocatorTest.cpp | 102 const GrGLuint seed = (count + fRandomName) / 2; local 103 const GrGLuint a = seed * kRange + 1; 104 const GrGLuint c = (seed * 743) % kRange;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
sampler.cc | 77 void Sampler::Init(uint32_t seed) { 79 if (seed != 0) { 80 rnd_ = seed;
|