HomeSort by relevance Sort by last modified time
    Searched refs:Seed (Results 1 - 20 of 20) sorted by null

  /external/llvm/lib/Support/
RandomNumberGenerator.cpp 30 Seed("rng-seed", cl::value_desc("seed"),
31 cl::desc("Seed for the random number generator"), cl::init(0));
35 if (Seed == 0)
39 // Combine seed and salts using std::seed_seq.
40 // Data: Seed-low, Seed-high, Salt
46 Data.push_back(Seed);
47 Data.push_back(Seed >> 32)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
ssrc_database.cc 19 uint64_t Seed() {
55 : crit_(CriticalSectionWrapper::CreateCriticalSection()), random_(Seed()) {}
  /external/libopus/silk/
NSQ_del_dec.c 44 opus_int32 Seed;
152 psDD->Seed = ( k + psIndices->Seed ) & 3;
153 psDD->SeedInit = psDD->Seed;
279 psIndices->Seed = psDD->SeedInit;
392 psDD->Seed = silk_RAND( psDD->Seed );
461 if ( psDD->Seed < 0 ) {
513 if ( psDD->Seed < 0 ) {
532 if ( psDD->Seed < 0 )
    [all...]
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 );
decode_indices.c 148 /* Decode seed */
150 psDec->indices.Seed = (opus_int8)ec_dec_icdf( psRangeDec, silk_uniform4_iCDF, 8 );
structs.h 126 opus_int8 Seed;
236 opus_int32 rand_seed; /* Seed for unvoiced signal generation */
decode_core.c 71 rand_seed = psDec->indices.Seed;
NSQ.c 99 NSQ->rand_seed = psIndices->Seed;
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 309 unsigned Seed = Flags.seed;
310 // Initialize Seed.
311 if (Seed == 0)
312 Seed = time(0) * 10000 + getpid();
314 Printf("Seed: %u\n", Seed);
315 USF.GetRand().ResetSeed(Seed);
  /external/libopus/silk/fixed/
encode_frame_FIX.c 102 psEnc->sCmn.indices.Seed = psEnc->sCmn.frameCounter++ & 3;
174 seed_copy = psEnc->sCmn.indices.Seed;
188 psEnc->sCmn.indices.Seed = seed_copy;
  /external/libopus/silk/float/
encode_frame_FLP.c 104 psEnc->sCmn.indices.Seed = psEnc->sCmn.frameCounter++ & 3;
170 seed_copy = psEnc->sCmn.indices.Seed;
183 psEnc->sCmn.indices.Seed = seed_copy;
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 37 static cl::opt<unsigned> SeedCL("seed",
38 cl::desc("Seed used for randomness"), cl::init(0));
88 Random(unsigned _seed):Seed(_seed) {}
93 uint32_t Val = Seed + 0x000b07a1;
94 Seed = (Val * 0x3c7c0ac1);
96 return Seed & 0x7ffff;
118 unsigned Seed;
693 // Pick an initial seed value
  /external/v8/test/mjsunit/
function-prototype.js 69 // Seed the GetPrototypeOf function to enable the fast case
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cryptxml.h 304 CRYPT_XML_DATA_BLOB Seed;
bcrypt.h 378 UCHAR Seed[20];
414 UCHAR Seed[20];
winternl.h 976 ULONG NTAPI RtlUniform(PULONG Seed)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map.h 720 seed_(Seed()),
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h 940 IN OUT PULONG Seed);
    [all...]
  /external/chromium-trace/catapult/third_party/mocha/
mocha.js 122 // Seed editLength = 0
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/mocha/
mocha.js 122 // Seed editLength = 0
    [all...]

Completed in 383 milliseconds