HomeSort by relevance Sort by last modified time
    Searched defs:seed (Results 176 - 200 of 296) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/net/disk_cache/
backend_unittest.cc 774 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
775 srand(seed);
1043 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
1044 srand(seed);
1454 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cffgload.c 916 FT_Fixed seed; local
928 /* compute random seed from stack address of parameter */
929 seed = (FT_Fixed)( ( (FT_PtrDist)(char*)&seed ^
933 seed = ( seed ^ ( seed >> 10 ) ^ ( seed >> 20 ) ) & 0xFFFFL;
934 if ( seed == 0 )
935 seed = 0x7384
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
histogram.c 555 static uint32_t MyRand(uint32_t *seed) {
556 *seed *= 16807U;
557 if (*seed == 0) {
558 *seed = 1;
560 return *seed;
566 uint32_t seed = 0; local
587 seed += iter;
591 const uint32_t idx1 = MyRand(&seed) % image_histo_size;
594 (tmp < 3) ? tmp : MyRand(&seed) % (image_histo_size - 1);
  /external/chromium_org/third_party/opus/src/celt/
bands.c 61 opus_uint32 celt_lcg_rand(opus_uint32 seed)
63 return 1664525 * seed + 1013904223;
260 opus_val16 *prev2logE, int *pulses, opus_uint32 seed)
340 seed = celt_lcg_rand(seed);
341 X[(j<<LM)+k] = (seed&0x8000 ? r : -r);
649 opus_uint32 seed; member in struct:band_ctx
1032 ctx->seed = celt_lcg_rand(ctx->seed);
1033 X[j] = (celt_norm)((opus_int32)ctx->seed>>20)
    [all...]
celt_decoder.c 378 opus_uint32 seed; local
404 seed = st->rng;
416 seed = celt_lcg_rand(seed);
417 X[boffs+j] = (celt_norm)((opus_int32)seed>>20);
422 st->rng = seed;
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lstate.h 121 unsigned int seed; /* randomized seed for hashes */ member in struct:global_State
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
defines.h 202 int16_t seed; member in struct:iLBC_Dec_Inst_t_
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
structs.h 183 int16_t seed; member in struct:__anon19669
  /external/chromium_org/v8/src/
stub-cache.cc 65 int seed = PrimaryOffset(primary->key, old_flags, old_map); local
66 int secondary_offset = SecondaryOffset(primary->key, old_flags, seed);
    [all...]
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 189 void setupFbo (const Context& ctx, GLuint seed, GLuint fbo)
196 if (seed == 0)
203 Random rnd (seed);
269 void FboAttacher::initAttachment (GLuint seed, GLuint element)
283 setupFbo(getContext(), seed, *fbo); local
290 << " with seed " << seed << "."
302 void FboOutputAttacher::setupContainer (GLuint seed, GLuint fbo)
304 setupFbo(getContext(), seed, fbo); local
306 << "// Drew to framebuffer " << fbo << " with seed " << seed << ".
    [all...]
  /external/fio/
init.c 899 unsigned long seed; local
906 seed = 0x89;
908 seed = td->o.rand_seed;
911 seed *= 0x9e370001UL;
914 td->rand_seeds[i] = seed;
915 seed *= 0x9e370001UL;
    [all...]
  /external/freetype/src/cff/
cffgload.c 912 FT_Fixed seed; local
924 /* compute random seed from stack address of parameter */
925 seed = (FT_Fixed)( ( (FT_PtrDist)(char*)&seed ^
929 seed = ( seed ^ ( seed >> 10 ) ^ ( seed >> 20 ) ) & 0xFFFFL;
930 if ( seed == 0 )
931 seed = 0x7384
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java 547 long seed = new Random().nextLong(); local
548 Random random = new Random(seed);
558 assertTrue("Modification " + i + " of seed " + seed, mmHeap.isIntact());
560 assertTrue("Modification " + i + " of seed " + seed, mmHeap.isIntact());
584 long seed = insertRandomly(elements, q); local
588 assertEquals("Using seed " + seed, expected, elements);
599 long seed = insertRandomly(elements, q) local
614 long seed = insertRandomly(elements, q); local
627 long seed = 7522346378524621981L; local
646 long seed = insertRandomly(elements, q); local
655 long seed = new Random().nextLong(); local
718 long seed = new Random().nextLong(); local
    [all...]
  /external/ipsec-tools/src/racoon/
oakley.c 571 vchar_t *seed = NULL; /* seed for Kn */ local
588 seed = vmalloc(prev->l + buf->l);
589 if (seed == NULL) {
601 memcpy(seed->v, prev->v, prev->l);
602 memcpy(seed->v + prev->l, buf->v, buf->l);
603 this = oakley_prf(iph2->ph1->skeyid_d, seed,
611 vfree(seed);
629 vfree(seed);
642 vfree(seed);
    [all...]
  /external/libopus/celt/
bands.c 61 opus_uint32 celt_lcg_rand(opus_uint32 seed)
63 return 1664525 * seed + 1013904223;
260 opus_val16 *prev2logE, int *pulses, opus_uint32 seed)
340 seed = celt_lcg_rand(seed);
341 X[(j<<LM)+k] = (seed&0x8000 ? r : -r);
649 opus_uint32 seed; member in struct:band_ctx
1032 ctx->seed = celt_lcg_rand(ctx->seed);
1033 X[j] = (celt_norm)((opus_int32)ctx->seed>>20)
    [all...]
celt_decoder.c 378 opus_uint32 seed; local
404 seed = st->rng;
416 seed = celt_lcg_rand(seed);
417 X[boffs+j] = (celt_norm)((opus_int32)seed>>20);
422 st->rng = seed;
    [all...]
  /external/libvorbis/lib/
psy.c 387 static void seed_curve(float *seed,
407 if(seed[seedptr]<lin)seed[seedptr]=lin;
418 float *seed,
440 seed_curve(seed,
510 float *seed,
517 seed_chase(seed,linesper,n); /* for masking */
522 float minV=seed[pos];
527 if((seed[pos]>NEGINF && seed[pos]<minV) || minV==NEGINF
755 float *seed=alloca(sizeof(*seed)*p->total_octave_lines); local
767 seed_loop(p,(const float ***)p->tonecurves,logfft,logmask,seed,global_specmax); local
    [all...]
  /external/mksh/src/
eval.c 417 mksh_ari_t seed; local
426 &seed, KSH_UNWIND_ERROR, true);
427 /* hash with seed, for now */
428 h = seed;
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
cffgload.c 916 FT_Fixed seed; local
928 /* compute random seed from stack address of parameter */
929 seed = (FT_Fixed)( ( (FT_PtrDist)(char*)&seed ^
933 seed = ( seed ^ ( seed >> 10 ) ^ ( seed >> 20 ) ) & 0xFFFFL;
934 if ( seed == 0 )
935 seed = 0x7384
    [all...]
  /external/valgrind/main/coregrind/
m_libcbase.c 907 // is NULL, it uses its own seed, which starts at zero. If pSeed is
910 static UInt seed = 0; variable
915 pSeed = &seed;
  /external/valgrind/main/none/tests/amd64/
sse4-64.c 80 static UInt seed = 80021; local
81 seed = 1103515245 * seed + 12345;
82 return (seed >> 17) & 0xFF;
    [all...]
  /external/webp/src/enc/
histogram.c 555 static uint32_t MyRand(uint32_t *seed) {
556 *seed *= 16807U;
557 if (*seed == 0) {
558 *seed = 1;
560 return *seed;
566 uint32_t seed = 0; local
587 seed += iter;
591 const uint32_t idx1 = MyRand(&seed) % image_histo_size;
594 (tmp < 3) ? tmp : MyRand(&seed) % (image_histo_size - 1);
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
structs.h 182 WebRtc_Word16 seed; member in struct:__anon37124
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core.h 123 WebRtc_UWord32 seed; member in struct:__anon37174
  /frameworks/base/core/java/android/widget/
AdapterView.java 1069 int seed = mSyncPosition; local
    [all...]

Completed in 881 milliseconds

1 2 3 4 5 6 78 91011>>