Searched refs:Seed (Results 1 - 19 of 19) sorted by relevance

/external/llvm/lib/Support/
H A DRandomNumberGenerator.cpp28 Seed("rng-seed", cl::value_desc("seed"),
29 cl::desc("Seed for the random number generator"), cl::init(0));
33 if (Seed == 0)
38 // Entropy: Seed-low, Seed-high, Salt...
41 Data.push_back(Seed);
42 Data.push_back(Seed >> 32);
/external/chromium_org/third_party/opus/src/silk/
H A DNSQ_del_dec.c44 opus_int32 Seed; member in struct:__anon14708
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 <
[all...]
H A Dencode_indices.c179 silk_assert( psIndices->Seed >= 0 && psIndices->Seed < 4 );
180 ec_enc_icdf( psRangeEnc, psIndices->Seed, silk_uniform4_iCDF, 8 );
H A Ddecode_indices.c150 psDec->indices.Seed = (opus_int8)ec_dec_icdf( psRangeDec, silk_uniform4_iCDF, 8 );
H A Dstructs.h126 opus_int8 Seed; member in struct:__anon14731
236 opus_int32 rand_seed; /* Seed for unvoiced signal generation */
H A Ddecode_core.c71 rand_seed = psDec->indices.Seed;
H A DNSQ.c99 NSQ->rand_seed = psIndices->Seed;
/external/libopus/silk/
H A DNSQ_del_dec.c44 opus_int32 Seed; member in struct:__anon24539
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 <
[all...]
H A Dencode_indices.c179 silk_assert( psIndices->Seed >= 0 && psIndices->Seed < 4 );
180 ec_enc_icdf( psRangeEnc, psIndices->Seed, silk_uniform4_iCDF, 8 );
H A Ddecode_indices.c150 psDec->indices.Seed = (opus_int8)ec_dec_icdf( psRangeDec, silk_uniform4_iCDF, 8 );
H A Dstructs.h126 opus_int8 Seed; member in struct:__anon24562
236 opus_int32 rand_seed; /* Seed for unvoiced signal generation */
H A Ddecode_core.c71 rand_seed = psDec->indices.Seed;
H A DNSQ.c99 NSQ->rand_seed = psIndices->Seed;
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dencode_frame_FIX.c102 psEnc->sCmn.indices.Seed = psEnc->sCmn.frameCounter++ & 3;
174 seed_copy = psEnc->sCmn.indices.Seed;
188 psEnc->sCmn.indices.Seed = seed_copy;
/external/chromium_org/third_party/opus/src/silk/float/
H A Dencode_frame_FLP.c104 psEnc->sCmn.indices.Seed = psEnc->sCmn.frameCounter++ & 3;
170 seed_copy = psEnc->sCmn.indices.Seed;
183 psEnc->sCmn.indices.Seed = seed_copy;
/external/libopus/silk/fixed/
H A Dencode_frame_FIX.c102 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/
H A Dencode_frame_FLP.c104 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/
H A Dllvm-stress.cpp37 cl::desc("Seed used for randomness"), cl::init(0));
64 Random(unsigned _seed):Seed(_seed) {}
69 uint32_t Val = Seed + 0x000b07a1;
70 Seed = (Val * 0x3c7c0ac1);
72 return Seed & 0x7ffff;
94 unsigned Seed; member in class:__anon26415::Random
/external/openfst/src/include/fst/
H A Drandgen.h132 int Seed() const { return seed_; } function in class:fst::FastLogProbArcSelector

Completed in 317 milliseconds