HomeSort by relevance Sort by last modified time
    Searched defs:seed (Results 151 - 175 of 261) sorted by null

1 2 3 4 5 67 8 91011

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
throw_allocator.h 392 seed(unsigned long __s) function in struct:random_condition
393 { engine().seed(__s); }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
throw_allocator.h 384 seed(unsigned long __s) function in struct:random_condition
385 { engine().seed(__s); }
  /cts/tests/tests/media/src/android/media/cts/
MediaRandomTest.java 193 long seed = System.currentTimeMillis(); local
194 Log.v(TAG, "seed = " + seed);
195 Random r = new Random(seed);
262 long seed = System.currentTimeMillis(); local
263 Log.v(TAG, "seed = " + seed);
264 Random r = new Random(seed);
  /external/chromium/net/disk_cache/
backend_unittest.cc 437 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
438 srand(seed);
665 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
666 srand(seed);
840 int seed = static_cast<int>(initial.ToInternalValue()); local
841 srand(seed);
1025 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
1026 srand(seed);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
virtualsocket_unittest.cc 653 time_t seed = ::time(NULL); local
654 LOG(LS_VERBOSE) << "seed = " << seed;
655 srand(static_cast<unsigned int>(seed));
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_asn1.c 168 ASN1_BIT_STRING *seed; member in struct:x9_62_curve_st
239 ASN1_OPT(X9_62_CURVE, seed, ASN1_BIT_STRING)
530 /* set the seed (optional) */
531 if (group->seed)
533 if (!curve->seed)
534 if ((curve->seed = ASN1_BIT_STRING_new()) == NULL)
539 curve->seed->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07);
540 curve->seed->flags |= ASN1_STRING_FLAG_BITS_LEFT;
541 if (!ASN1_BIT_STRING_set(curve->seed, group->seed,
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
KnownHosts.java 883 int seed = 1; local
893 sb.append(v[(((raw[2 * i] >> 6) & 3) + seed) % 6]);
895 sb.append(v[((raw[2 * i] & 3) + (seed / 6)) % 6]);
902 // As long as seed >= 0, seed will be >= 0 afterwards
903 seed = ((seed * 5) + (((raw[2 * i] & 0xff) * 7) + (raw[(2 * i) + 1] & 0xff))) % 36;
908 sb.append(v[seed % 6]); // seed >= 0, therefore index positive
910 sb.append(v[seed / 6])
    [all...]
  /external/openssl/crypto/ec/
ec_asn1.c 168 ASN1_BIT_STRING *seed; member in struct:x9_62_curve_st
239 ASN1_OPT(X9_62_CURVE, seed, ASN1_BIT_STRING)
530 /* set the seed (optional) */
531 if (group->seed)
533 if (!curve->seed)
534 if ((curve->seed = ASN1_BIT_STRING_new()) == NULL)
539 curve->seed->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07);
540 curve->seed->flags |= ASN1_STRING_FLAG_BITS_LEFT;
541 if (!ASN1_BIT_STRING_set(curve->seed, group->seed,
    [all...]
  /external/pixman/test/
stress-test.c 847 run_test (uint32_t seed, pixman_bool_t verbose, uint32_t mod)
854 if (mod == 0 || (seed % mod) == 0)
855 printf ("Seed 0x%08x\n", seed);
860 prng_srand (seed);
968 uint32_t seed = 1; local
995 get_int (argv[i + 1], &seed);
1011 "-s <seed> Seed of first test (ignored if PIXMAN_RANDOMIZE_TESTS is set)\n"
1013 "-v <n> Print out every n'th seed\n\n")
    [all...]
  /external/stressapptest/src/
os.cc 803 unsigned int seed = 12345; local
808 float_arr[i] = rand_r(&seed);
809 if (rand_r(&seed) % 2)
  /external/valgrind/main/coregrind/
m_libcbase.c 815 // is NULL, it uses its own seed, which starts at zero. If pSeed is
818 static UInt seed = 0; variable
823 pSeed = &seed;
m_libcfile.c 664 UInt seed; local
672 seed = (VG_(getpid)() << 9) ^ VG_(getppid)();
682 tmpdir, part_of_name, VG_(random)( &seed ));
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.h 119 WebRtc_UWord32 seed; member in struct:__anon28660
  /frameworks/av/media/libstagefright/omx/tests/
OMXHarness.cpp 788 " -s(eed) Set the random seed\n"
808 unsigned long seed = 0xdeadbeef; local
819 fprintf(stderr, "Malformed seed.\n");
823 seed = x;
845 "with \"%s -s %lu\"\n", me, seed);
847 srand(seed);
  /libcore/crypto/src/main/java/org/conscrypt/
HandshakeProtocol.java 447 byte[] seed = new byte[64];
448 System.arraycopy(clientHello.getRandom(), 0, seed, 0, 32); local
449 System.arraycopy(serverHello.getRandom(), 0, seed, 32, 32); local
454 master_secret_bytes, seed);
459 PRF.computePRF_SSLv3(session.master_secret, preMasterSecret, seed);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java 130 final long seed = System.currentTimeMillis(); local
144 final Random random = new Random(seed);
227 final long seed = System.currentTimeMillis(); local
228 final Random random = new Random(seed);
423 final long seed = System.currentTimeMillis(); local
424 final Random random = new Random(seed);
492 final long seed = System.currentTimeMillis(); local
493 final Random random = new Random(seed);
594 final long seed = System.currentTimeMillis(); local
595 final Random random = new Random(seed);
639 final long seed = System.currentTimeMillis(); local
    [all...]
  /external/chromium/net/url_request/
url_request_unittest.cc 88 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
89 srand(seed);
    [all...]
  /external/chromium_org/net/disk_cache/
backend_unittest.cc 768 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
769 srand(seed);
1037 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
1038 srand(seed);
1448 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/opus/src/celt/
bands.c 61 opus_uint32 celt_lcg_rand(opus_uint32 seed)
63 return 1664525 * seed + 1013904223;
244 opus_val16 *prev2logE, int *pulses, opus_uint32 seed)
324 seed = celt_lcg_rand(seed);
325 X[(j<<LM)+k] = (seed&0x8000 ? r : -r);
633 opus_uint32 seed; member in struct:band_ctx
1019 ctx->seed = celt_lcg_rand(ctx->seed);
1020 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/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/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/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...]

Completed in 1497 milliseconds

1 2 3 4 5 67 8 91011