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

<<11121314151617181920>>

  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
packet_manipulator.h 74 // To get a repeatable packet drop pattern, re-initialize the random seed
96 virtual void InitializeRandomSeed(unsigned int seed);
  /external/compiler-rt/lib/msan/
msan_chained_origin_depot.cc 24 const u32 seed = 0x9747b28c; local
26 u32 h = seed;
  /external/openssl/crypto/dsa/
fips186a.txt 13 generation standard described in appendix 2 using the 160-bit SEED:
17 With this SEED, the algorithm found p and q when the counter was at 105.
  /external/regex-re2/re2/testing/
random_test.cc 11 DEFINE_int32(regexpseed, 404, "Random regexp seed.");
13 DEFINE_int32(stringseed, 200, "Random string seed.");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
random.h 191 * generator engine with seed @p __s. The default seed value
194 * @param __s The initial seed value.
198 { seed(__s); }
202 * generator engine seeded from the seed sequence @p __q.
204 * @param __q the seed sequence.
211 { seed(__q); }
215 * engine sequence to the seed @p __s.
217 * @param __s The new seed.
220 seed(result_type __s = default_seed)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
random.h 191 * generator engine with seed @p __s. The default seed value
194 * @param __s The initial seed value.
198 { seed(__s); }
202 * generator engine seeded from the seed sequence @p __q.
204 * @param __q the seed sequence.
211 { seed(__q); }
215 * engine sequence to the seed @p __s.
217 * @param __s The new seed.
220 seed(result_type __s = default_seed)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
random.h 196 * generator engine with seed @p __s. The default seed value
199 * @param __s The initial seed value.
203 { seed(__s); }
207 * generator engine seeded from the seed sequence @p __q.
209 * @param __q the seed sequence.
216 { seed(__q); }
220 * engine sequence to the seed @p __s.
222 * @param __s The new seed.
225 seed(result_type __s = default_seed)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
random.h 191 * generator engine with seed @p __s. The default seed value
194 * @param __s The initial seed value.
198 { seed(__s); }
202 * generator engine seeded from the seed sequence @p __q.
204 * @param __q the seed sequence.
211 { seed(__q); }
215 * engine sequence to the seed @p __s.
217 * @param __s The new seed.
220 seed(result_type __s = default_seed)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
random.h 196 * generator engine with seed @p __s. The default seed value
199 * @param __s The initial seed value.
203 { seed(__s); }
207 * generator engine seeded from the seed sequence @p __q.
209 * @param __q the seed sequence.
216 { seed(__q); }
220 * engine sequence to the seed @p __s.
222 * @param __s The new seed.
225 seed(result_type __s = default_seed)
    [all...]
  /external/webrtc/src/common_audio/signal_processing/include/
signal_processing_library.h 344 WebRtc_UWord32 WebRtcSpl_IncreaseSeed(WebRtc_UWord32* seed);
345 WebRtc_Word16 WebRtcSpl_RandU(WebRtc_UWord32* seed);
346 WebRtc_Word16 WebRtcSpl_RandN(WebRtc_UWord32* seed);
349 WebRtc_UWord32* seed);
    [all...]
  /external/chromium_org/chrome/browser/metrics/variations/
variations_request_scheduler.h 33 // seed.
  /external/chromium_org/components/rappor/
bloom_filter_unittest.cc 38 // Create a 500 bit filter, and use a large seed offset to see if anything
rappor_metric.h 46 // Generates the bits to report for this metric. Using the secret as a seed,
  /external/chromium_org/components/variations/
variations_seed_simulator.cc 112 const VariationsSeed& seed,
120 FilterAndValidateStudies(seed, locale, reference_date, version, channel,
177 // old seed, but were removed). This will require tracking the set of studies
178 // that were created from the original seed.
  /external/chromium_org/content/test/data/webcrypto/
rsa_oaep.json 6 // seed function and the MGF-1 digest function
  /external/chromium_org/sync/internal_api/public/engine/
polling_constants.cc 31 // DDoS if it were used as a seed for exponential backoff, although the client
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFETurbulenceElement.h 48 SVGAnimatedNumber* seed() { return m_seed.get(); } function in class:WebCore::FINAL
SVGFETurbulenceElement.idl 44 readonly attribute SVGAnimatedNumber seed;
  /external/chromium_org/third_party/freetype/src/psaux/
psobjs.h 204 FT_UShort seed );
  /external/chromium_org/third_party/leveldatabase/src/db/
db_iter.cc 52 uint32_t seed)
59 rnd_(seed),
313 uint32_t seed) {
314 return new DBIter(db, user_key_comparator, internal_iter, sequence, seed);
  /external/chromium_org/third_party/mt19937ar/
LICENSE 4 Before using, initialize the state by using init_genrand(seed)
  /external/chromium_org/third_party/openssl/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/chromium_org/third_party/opus/src/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/chromium_org/third_party/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/chromium_org/third_party/skia/tests/
ChecksumTest.cpp 13 // Murmur3 has an optional third seed argument, so we wrap it to fit a uniform type.

Completed in 1243 milliseconds

<<11121314151617181920>>