HomeSort by relevance Sort by last modified time
    Searched full:seed (Results 126 - 150 of 418) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/v8/src/
platform-macos.cc 90 // Seed the random number generator.
92 // to an unsigned. Going directly will cause an overflow and the seed to be
93 // set to all ones. The seed will be identical for different instances that
95 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
96 srandom(static_cast<unsigned int>(seed));
platform-openbsd.cc 76 // Seed the random number generator.
78 // to an unsigned. Going directly can cause an overflow and the seed to be
79 // set to all ones. The seed will be identical for different instances that
81 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
82 srandom(static_cast<unsigned int>(seed));
platform-solaris.cc 71 // Seed the random number generator.
73 // to an unsigned. Going directly will cause an overflow and the seed to be
74 // set to all ones. The seed will be identical for different instances that
76 uint64_t seed = static_cast<uint64_t>(TimeCurrentMillis()); local
77 srandom(static_cast<unsigned int>(seed));
  /external/wpa_supplicant/tests/
test_sha1.c 32 const u8 seed[] = { local
122 seed, sizeof(seed), buf, sizeof(master_secret));
130 seed, sizeof(seed), buf, sizeof(key_block));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 148 * Returns the seed used to fill the root element values.
149 * The seed might be either a String, a String array, an {@link ElementDescriptor},
204 AndroidTargetData.DESCRIPTOR_LAYOUT, // root seed
214 ResourcesDescriptors.ROOT_ELEMENT, // root seed
223 MenuDescriptors.MENU_ROOT_ELEMENT, // root seed
232 AndroidTargetData.DESCRIPTOR_APPWIDGET_PROVIDER, // root seed
241 AndroidTargetData.DESCRIPTOR_PREFERENCES, // root seed
250 AndroidTargetData.DESCRIPTOR_SEARCHABLE, // root seed
260 new String[] { // root seed
766 // depending of the type of the seed, initialize the root in different way
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/
kseed.c 14 seed implementation of SEED derived from RFC4269
23 "seed",
195 Initialize the SEED block cipher
253 Encrypts a block of text with SEED
275 Decrypts a block of text with SEED
304 Performs a self-test of the SEED block cipher
  /dalvik/vm/compiler/codegen/arm/
CodegenCommon.c 91 u8 seed; local
98 seed = DOUBLEREG(reg) ? 3 : 1;
103 *mask |= seed << shift;
  /external/openssl/apps/
dsa.c 90 * -seed - encrypt output if PEM format
222 BIO_printf(bio_err," -seed encrypt PEM output with cbc seed\n");
gendsa.c 144 else if (strcmp(*argv,"-seed") == 0)
186 BIO_printf(bio_err," -seed\n");
187 BIO_printf(bio_err," encrypt PEM output with cbc seed\n");
genrsa.c 167 else if (strcmp(*argv,"-seed") == 0)
206 BIO_printf(bio_err," -seed\n");
207 BIO_printf(bio_err," encrypt PEM output with cbc seed\n");
  /external/openssl/crypto/dsa/
dsa.h 155 unsigned char *seed, int seed_len,
242 unsigned char *seed,int seed_len,
249 unsigned char *seed,int seed_len,
  /external/openssl/include/openssl/
dsa.h 155 unsigned char *seed, int seed_len,
242 unsigned char *seed,int seed_len,
249 unsigned char *seed,int seed_len,
  /external/freetype/src/cff/
cffgload.c 895 FT_Fixed seed; local
907 /* compute random seed from stack address of parameter */
908 seed = (FT_Fixed)( ( (FT_PtrDist)(char*)&seed ^
912 seed = ( seed ^ ( seed >> 10 ) ^ ( seed >> 20 ) ) & 0xFFFFL;
913 if ( seed == 0 )
914 seed = 0x7384
    [all...]
  /external/v8/benchmarks/
README.txt 60 Removed duplicate line in random seed code, and changed the name of
revisions.html 25 <p>Removed duplicate line in random seed code, and changed the name of
  /external/v8/test/cctest/
test-strings.cc 17 unsigned int seed = 123; variable
21 z = seed;
24 seed = static_cast<unsigned int>(z);
25 return static_cast<uint32_t>(seed >> 16);
  /external/v8/test/mjsunit/
function-prototype.js 66 // Seed the GetPrototypeOf function to enable the fast case
  /external/wpa_supplicant/
crypto.h 60 * @seed: Seed/key for the PRF
61 * @seed_len: Seed length in bytes
70 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen);
crypto_gnutls.c 95 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto.h 60 * @seed: Seed/key for the PRF
61 * @seed_len: Seed length in bytes
70 int __must_check fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x,
  /frameworks/base/docs/html/guide/developing/tools/
monkey.jd 91 <td><code>-s &lt;seed&gt;</code></td>
92 <td>Seed value for pseudo-random number generator. If you re-run the Monkey with the same seed
236 need to clear data, use of the seed, etc. -->
  /external/bluetooth/glib/glib/
gtestutils.h 148 /* provide seed-able random numbers for tests */
233 G_TEST_LOG_START_BINARY, /* s:binaryname s:seed */
  /external/bluetooth/glib/tests/
slice-test.c 207 g_print ("Usage: slice-test [n_threads] [G|S|M|O][f][c][~] [maxblocksize] [seed]\n");
280 g_print ("Starting %d threads allocating random blocks <= %u bytes with seed=%s using %s%s\n", n_threads, prime_size, strseed, mode, emode);
  /external/grub/netboot/
main.c 1138 static long seed = 0; local
1146 if (!seed)
1148 seed = (currticks () + *((long *) &arptable[ARP_CLIENT].node)
1152 q = seed / 53668;
1153 if ((seed = 40014 * (seed - 53668 * q) - 12211 *q ) < 0)
1154 seed += 2147483563L;
1155 tmo = (base << exp) + (TICKS_PER_SEC - (seed / TWO_SECOND_DIVISOR));
  /external/icu4c/test/intltest/
intltest.h 135 * @param seedp pointer to seed. Set *seedp to any negative value
141 * Convenience method using a global seed.

Completed in 249 milliseconds

1 2 3 4 56 7 8 91011>>