HomeSort by relevance Sort by last modified time
    Searched defs:seed (Results 76 - 100 of 112) sorted by null

1 2 34 5

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeProtocol.java 450 byte[] seed = new byte[64];
451 System.arraycopy(clientHello.getRandom(), 0, seed, 0, 32); local
452 System.arraycopy(serverHello.getRandom(), 0, seed, 32, 32); local
457 master_secret_bytes, seed);
462 PRF.computePRF_SSLv3(session.master_secret, preMasterSecret, seed);
  /external/bluetooth/glib/tests/
sequence-test.c 385 run_random_tests (guint32 seed)
394 g_print (" seed: %u\n", seed);
396 g_random_set_seed (seed);
1141 guint32 seed = get_seed (argc, argv); local
1155 /* Run with a new random seed */
1156 g_print ("random seed:\n");
1157 run_random_tests (seed);
  /external/chromium/net/url_request/
url_request_unittest.cc 88 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
89 srand(seed);
    [all...]
  /external/ipsec-tools/src/racoon/
oakley.c 618 vchar_t *seed = NULL; /* seed for Kn */ local
635 seed = vmalloc(prev->l + buf->l);
636 if (seed == NULL) {
648 memcpy(seed->v, prev->v, prev->l);
649 memcpy(seed->v + prev->l, buf->v, buf->l);
650 this = oakley_prf(iph2->ph1->skeyid_d, seed,
658 vfree(seed);
676 vfree(seed);
689 vfree(seed);
    [all...]
  /external/v8/src/
platform-cygwin.cc 65 // Seed the random number generator.
67 // to an unsigned. Going directly can cause an overflow and the seed to be
68 // set to all ones. The seed will be identical for different instances that
70 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
71 srandom(static_cast<unsigned int>(seed));
platform-freebsd.cc 82 // Seed the random number generator.
84 // to an unsigned. Going directly can cause an overflow and the seed to be
85 // set to all ones. The seed will be identical for different instances that
87 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
88 srandom(static_cast<unsigned int>(seed));
platform-macos.cc 97 // Seed the random number generator.
99 // to an unsigned. Going directly will cause an overflow and the seed to be
100 // set to all ones. The seed will be identical for different instances that
102 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
103 srandom(static_cast<unsigned int>(seed));
platform-solaris.cc 92 // Seed the random number generator.
94 // to an unsigned. Going directly will cause an overflow and the seed to be
95 // set to all ones. The seed will be identical for different instances that
97 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
98 srandom(static_cast<unsigned int>(seed));
platform-linux.cc 82 // Seed the random number generator.
84 // to an unsigned. Going directly can cause an overflow and the seed to be
85 // set to all ones. The seed will be identical for different instances that
87 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
88 srandom(static_cast<unsigned int>(seed));
platform-win32.cc 574 // Seed the random number generator.
576 // to an unsigned. Going directly can cause an overflow and the seed to be
577 // set to all ones. The seed will be identical for different instances that
579 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
580 srand(static_cast<unsigned int>(seed));
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/main/source/
aecm_core.h 127 WebRtc_UWord32 seed; member in struct:__anon13808
  /frameworks/base/core/java/android/widget/
AdapterView.java 1039 int seed = mSyncPosition; local
    [all...]
  /external/freetype/src/cff/
cffgload.c 893 FT_Fixed seed; local
905 /* compute random seed from stack address of parameter */
906 seed = (FT_Fixed)( ( (FT_PtrDist)(char*)&seed ^
910 seed = ( seed ^ ( seed >> 10 ) ^ ( seed >> 20 ) ) & 0xFFFFL;
911 if ( seed == 0 )
912 seed = 0x7384
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 2291 uint32_t seed = m_seed; local
2434 uint32_t seed = m_seed; local
    [all...]
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php 1478 $seed = (int)abs(crc32($addr) \/ strlen($addr)); # Deterministic seed. variable
    [all...]
  /external/wpa_supplicant/
eap_fast.c 854 u8 master_secret[48], *seed; local
895 seed = os_malloc(seed_len);
896 if (seed == NULL)
898 os_memcpy(seed, server_random, server_random_len);
899 os_memcpy(seed + server_random_len,
902 wpa_hexdump(MSG_MSGDUMP, "EAP-FAST: T-PRF seed", seed, seed_len);
909 seed, seed_len, master_secret, sizeof(master_secret));
910 os_free(seed);
    [all...]
tlsv1_client.c 1079 u8 seed[2 * TLS_RANDOM_LEN]; local
1087 os_memcpy(seed, conn->client_random, TLS_RANDOM_LEN);
1088 os_memcpy(seed + TLS_RANDOM_LEN, conn->server_random,
1091 "master secret", seed, 2 * TLS_RANDOM_LEN,
1101 os_memcpy(seed, conn->server_random, TLS_RANDOM_LEN);
1102 os_memcpy(seed + TLS_RANDOM_LEN, conn->client_random, TLS_RANDOM_LEN);
1106 "key expansion", seed, 2 * TLS_RANDOM_LEN,
2156 u8 seed[2 * TLS_RANDOM_LEN]; local
    [all...]
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 715 // First check if the second quarter is the seed for a half-match.
754 // Start with a 1/4 length substring at position i as a seed.
755 String seed = longtext.substring(i, i + longtext.length() / 4); local
760 while ((j = shorttext.indexOf(seed, j + 1)) != -1) {
    [all...]
  /external/protobuf/gtest/test/
gtest_unittest.cc 200 const int seed = GetRandomSeedFromFlag(0); local
201 EXPECT_LE(1, seed);
202 EXPECT_LE(seed, static_cast<int>(kMaxRandomSeed));
986 // Because we use our own random number generator and a fixed seed,
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 124 * @param seed A number used to generate the values
128 String account, int seed) {
129 String seedString = Long.toString(seed);
143 values.put(Calendars.CALENDAR_ACCESS_LEVEL, (seed % 8) * 100);
145 values.put(Calendars.CALENDAR_COLOR, 0xff000000 + seed);
146 values.put(Calendars.VISIBLE, seed % 2);
149 values.put(Calendars.CALENDAR_TIME_ZONE, TIME_ZONES[seed % TIME_ZONES.length]);
150 values.put(Calendars.CAN_ORGANIZER_RESPOND, seed % 2);
151 values.put(Calendars.CAN_MODIFY_TIME_ZONE, seed % 2);
171 ContentValues original, int seed) {
912 int seed = 0; local
928 int seed = 0; local
987 int seed = 0; local
1119 int seed = 0; local
1160 int seed = 0; local
1310 int seed = 0; local
1450 int seed = 0; local
1548 int seed = 0; local
1665 int seed = 0; local
1785 int seed = 0; local
1860 int seed = 0; local
1959 int seed = 0; local
1999 int seed = 0; local
2047 int seed = 0; local
2089 int seed = 0; local
2134 int seed = 0; local
2217 int seed = 0; local
2254 int seed = 0; local
2296 int seed = 0; local
2483 int seed = 0; local
2576 int seed = 0; local
2745 int seed = 0; local
2841 int seed = 0; local
2897 int seed = 0; local
2923 int seed = 0; local
3214 int seed = 0; local
    [all...]
  /external/chromium/testing/gtest/test/
gtest_unittest.cc 223 const int seed = GetRandomSeedFromFlag(0); local
224 EXPECT_LE(1, seed);
225 EXPECT_LE(seed, static_cast<int>(kMaxRandomSeed));
763 // Because we use our own random number generator and a fixed seed,
    [all...]
  /external/grub/stage2/
builtins.c 2585 unsigned int seed; local
    [all...]
  /external/kernel-headers/original/linux/
ext3_fs.h 475 __le32 s_hash_seed[4]; /* HTREE hash seed */
681 u32 *seed; member in struct:dx_hash_info
  /prebuilt/common/http-client/
httpcore-4.1.jar 
  /prebuilt/sdk/10/
android.jar 

Completed in 508 milliseconds

1 2 34 5