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

  /external/llvm/lib/Support/
RandomNumberGenerator.cpp 28 Seed("rng-seed", cl::value_desc("seed"),
29 cl::desc("Seed for the random number generator"), cl::init(0));
33 if (Seed == 0)
37 // Combine seed and salt using std::seed_seq.
38 // Entropy: Seed-low, Seed-high, Salt...
41 Data.push_back(Seed);
42 Data.push_back(Seed >> 32)
    [all...]
  /external/chromium_org/third_party/opus/src/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/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/chromium_org/third_party/opus/src/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/chromium_org/third_party/opus/src/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/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 36 static cl::opt<unsigned> SeedCL("seed",
37 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;
694 // Pick an initial seed value
  /external/chromium_org/v8/test/mjsunit/
function-prototype.js 66 // 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...]
  /external/openfst/src/include/fst/
randgen.h 52 UniformArcSelector(int seed = time(0)) { srand(seed); }
75 LogProbArcSelector(int seed = time(0)) { srand(seed); }
117 FastLogProbArcSelector(int seed = time(0))
118 : LogProbArcSelector<A>(seed),
119 seed_(seed) {}
132 int Seed() const { return seed_; }
  /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...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js     [all...]

Completed in 742 milliseconds