/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/ppp/pppd/ |
magic.c | 62 * Attempts to compute a random number seed which will not repeat. 69 long seed; local 73 seed = get_host_seed() ^ t.tv_sec ^ t.tv_usec ^ getpid(); 74 srand48(seed);
|
/external/regex-re2/util/ |
util.h | 119 static inline uint32 Hash32StringWithSeed(const char* s, int len, uint32 seed) { 120 return hashword((uint32*)s, len/4, seed); 123 static inline uint64 Hash64StringWithSeed(const char* s, int len, uint32 seed) { 125 x = seed;
|
/external/vixl/test/ |
test-fuzz-a64.cc | 44 uint16_t seed[3] = {1, 2, 3}; local 45 seed48(seed); 62 uint16_t seed[3] = {42, 43, 44}; local 63 seed48(seed);
|
/external/wpa_supplicant_8/src/crypto/ |
sha256.h | 24 const char *label, const u8 *seed, size_t seed_len,
|
fips_prf_internal.c | 17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) 32 os_memcpy(xkey, seed, seed_len);
|
fips_prf_openssl.c | 26 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) 41 os_memcpy(xkey, seed, seed_len);
|
/packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/makedict/ |
FusionDictionaryTest.java | 38 private void prepare(final long seed) { 39 System.out.println("Seed is " + seed); 40 final Random random = new Random(seed);
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaRandomTest.java | 198 long seed = System.currentTimeMillis(); local 199 Log.v(TAG, "seed = " + seed); 200 Random r = new Random(seed); 267 long seed = System.currentTimeMillis(); local 268 Log.v(TAG, "seed = " + seed); 269 Random r = new Random(seed);
|
/external/chromium_org/third_party/WebKit/Source/platform/testing/ |
TreeTestHelpers.h | 39 // Initializes the pseudo-random number generator with a specific seed. 40 void initRandom(const int32_t seed);
|
/external/chromium_org/third_party/libyuv/include/libyuv/ |
compare.h | 21 // Compute a hash for specified memory. Seed of 5381 recommended. 23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed);
|
/external/chromium_org/third_party/webrtc/base/ |
helpers.h | 23 bool InitRandom(int seed); 24 bool InitRandom(const char* seed, size_t len);
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
iteration-semantics.js | 82 function fold(cons, seed, iterable) { 84 seed = cons(x, seed); 86 return seed; 117 function nested_fold(cons, seed, iterable) { 121 seed = cons(y, seed); 124 return seed;
|
/external/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/ |
seed_sseq.pass.cpp | 15 // template<class Sseq> void seed(Sseq& q); 28 e1.seed(sseq);
|
/external/libyuv/files/include/libyuv/ |
compare.h | 21 // Compute a hash for specified memory. Seed of 5381 recommended. 23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed);
|
/external/speex/libspeex/ |
math_approx.h | 49 static inline spx_word16_t speex_rand(spx_word16_t std, spx_int32_t *seed) 54 *seed = 1664525 * *seed + 1013904223; 55 ran.i = jflone | (jflmsk & *seed); 122 static inline spx_word16_t speex_rand(spx_word16_t std, spx_int32_t *seed) 125 *seed = 1664525 * *seed + 1013904223; 126 res = MULT16_16(EXTRACT16(SHR32(*seed,16)),std);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/ |
seed_sseq.pass.cpp | 15 // template<class Sseq> void seed(Sseq& q); 28 e1.seed(sseq);
|
/packages/apps/Gallery2/jni/filters/ |
kmeans.cc | 35 jint swidth, jint sheight, jint p, jint seed) 54 unsigned int s = seed;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/tr1/ |
random.h | 374 * seed @p __s. The default seed value is 1. 376 * @param __s The initial seed value. 380 { this->seed(__x0); } 386 * @param __g The seed generator function. 390 { this->seed(__g); } 394 * sequence to the seed @g __s. 396 * @param __s The new seed. 399 seed(unsigned long __s = 1); 405 * @param __g the seed generator function 409 seed(_Gen& __g) function in class:linear_congruential 501 seed(_Gen& __g, true_type) function in class:linear_congruential 584 seed() function in class:mersenne_twister 592 seed(_Gen& __g) function in class:mersenne_twister 677 seed(_Gen& __g, true_type) function in class:mersenne_twister 783 seed(_Gen& __g) function in class:subtract_with_carry 874 seed(_Gen& __g, true_type) function in class:subtract_with_carry 955 seed(_Gen& __g) function in class:subtract_with_carry_01 1055 seed(_Gen& __g, true_type) function in class:subtract_with_carry_01 1144 void seed() function in class:discard_block 1156 void seed(_Gen& __g) function in class:discard_block [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/ |
random.h | 374 * seed @p __s. The default seed value is 1. 376 * @param __s The initial seed value. 380 { this->seed(__x0); } 386 * @param __g The seed generator function. 390 { this->seed(__g); } 394 * sequence to the seed @g __s. 396 * @param __s The new seed. 399 seed(unsigned long __s = 1); 405 * @param __g the seed generator function 409 seed(_Gen& __g) function in class:linear_congruential 501 seed(_Gen& __g, true_type) function in class:linear_congruential 584 seed() function in class:mersenne_twister 592 seed(_Gen& __g) function in class:mersenne_twister 677 seed(_Gen& __g, true_type) function in class:mersenne_twister 783 seed(_Gen& __g) function in class:subtract_with_carry 874 seed(_Gen& __g, true_type) function in class:subtract_with_carry 955 seed(_Gen& __g) function in class:subtract_with_carry_01 1055 seed(_Gen& __g, true_type) function in class:subtract_with_carry_01 1144 void seed() function in class:discard_block 1156 void seed(_Gen& __g) function in class:discard_block [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/ |
random.h | 374 * seed @p __s. The default seed value is 1. 376 * @param __s The initial seed value. 380 { this->seed(__x0); } 386 * @param __g The seed generator function. 390 { this->seed(__g); } 394 * sequence to the seed @g __s. 396 * @param __s The new seed. 399 seed(unsigned long __s = 1); 405 * @param __g the seed generator function 409 seed(_Gen& __g) function in class:linear_congruential 501 seed(_Gen& __g, true_type) function in class:linear_congruential 584 seed() function in class:mersenne_twister 592 seed(_Gen& __g) function in class:mersenne_twister 677 seed(_Gen& __g, true_type) function in class:mersenne_twister 783 seed(_Gen& __g) function in class:subtract_with_carry 874 seed(_Gen& __g, true_type) function in class:subtract_with_carry 955 seed(_Gen& __g) function in class:subtract_with_carry_01 1055 seed(_Gen& __g, true_type) function in class:subtract_with_carry_01 1144 void seed() function in class:discard_block 1156 void seed(_Gen& __g) function in class:discard_block [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
random | 364 * seed @p __s. The default seed value is 1. 366 * @param __s The initial seed value. 370 { this->seed(__x0); } 376 * @param __g The seed generator function. 380 { this->seed(__g); } 384 * sequence to the seed @g __s. 386 * @param __s The new seed. 389 seed(unsigned long __s = 1); 395 * @param __g the seed generator function [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
random | 364 * seed @p __s. The default seed value is 1. 366 * @param __s The initial seed value. 370 { this->seed(__x0); } 376 * @param __g The seed generator function. 380 { this->seed(__g); } 384 * sequence to the seed @g __s. 386 * @param __s The new seed. 389 seed(unsigned long __s = 1); 395 * @param __g the seed generator function [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
random | 364 * seed @p __s. The default seed value is 1. 366 * @param __s The initial seed value. 370 { this->seed(__x0); } 376 * @param __g The seed generator function. 380 { this->seed(__g); } 384 * sequence to the seed @g __s. 386 * @param __s The new seed. 389 seed(unsigned long __s = 1); 395 * @param __g the seed generator function [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/ |
random | 364 * seed @p __s. The default seed value is 1. 366 * @param __s The initial seed value. 370 { this->seed(__x0); } 376 * @param __g The seed generator function. 380 { this->seed(__g); } 384 * sequence to the seed @g __s. 386 * @param __s The new seed. 389 seed(unsigned long __s = 1); 395 * @param __g the seed generator function [all...] |