/external/deqp/framework/randomshaders/ |
rsgParameters.hpp | 84 : seed (0) 96 deUint32 seed; member in class:rsg::ProgramParameters
|
/external/guava/guava/src/com/google/common/hash/ |
Hashing.java | 70 * algorithm</a> (little-endian variant), using the given seed value. 72 public static HashFunction murmur3_32(int seed) { 73 return new Murmur3_32HashFunction(seed); 79 * algorithm</a> (little-endian variant), using a seed value of zero. 90 * 128-bit murmur3 algorithm, x64 variant</a> (little-endian variant), using the given seed 93 public static HashFunction murmur3_128(int seed) { 94 return new Murmur3_128HashFunction(seed); 100 * 128-bit murmur3 algorithm, x64 variant</a> (little-endian variant), using a seed value
|
/external/llvm/lib/Support/ |
Hashing.cpp | 20 // Provide a definition and static initializer for the fixed seed. This 25 // Implement the function for forced setting of the fixed seed.
|
/external/openssl/crypto/dsa/ |
dsatest.c | 96 /* seed, out_p, out_q, out_g are taken from the updated Appendix 5 to 98 static unsigned char seed[20]={ variable 161 seed, 20, &counter, &h, &cb)) 164 BIO_printf(bio_err,"seed\n"); 168 seed[i],seed[i+1],seed[i+2],seed[i+3]);
|
/external/speex/libspeex/ |
cb_search.h | 73 spx_int32_t *seed 100 spx_int32_t *seed
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
decode_plc.c | 474 (ISACdec_obj->plcstr_obj).seed = WEBRTC_SPL_RAND( 475 (ISACdec_obj->plcstr_obj).seed ); 477 (ISACdec_obj->plcstr_obj).seed, 10 ) - 16; 480 (ISACdec_obj->plcstr_obj).seed = WEBRTC_SPL_RAND( 481 (ISACdec_obj->plcstr_obj).seed ); 483 (ISACdec_obj->plcstr_obj).seed, 10 ) - 16; 488 (ISACdec_obj->plcstr_obj).seed = WEBRTC_SPL_RAND( 489 (ISACdec_obj->plcstr_obj).seed ); 491 (ISACdec_obj->plcstr_obj).seed, 10 ) - 16; 493 (ISACdec_obj->plcstr_obj).seed = WEBRTC_SPL_RAND [all...] |
/external/wpa_supplicant_8/src/eap_common/ |
eap_peap_common.c | 16 const char *label, const u8 *seed, size_t seed_len, 31 addr[2] = seed;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterKMeans.java | 31 // set random seed for session 54 int swidth, int sheight, int p, int seed);
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
throw_allocator.h | 99 init(unsigned long seed); 287 twister_rand_gen(unsigned int seed) : _M_generator(seed) { } 291 init(unsigned int seed) 292 { _M_generator.seed(seed); } 320 throw_allocator_base::init(unsigned long seed) 321 { _S_g.init(seed); }
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
throw_allocator.h | 99 init(unsigned long seed); 287 twister_rand_gen(unsigned int seed) : _M_generator(seed) { } 291 init(unsigned int seed) 292 { _M_generator.seed(seed); } 320 throw_allocator_base::init(unsigned long seed) 321 { _S_g.init(seed); }
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/ |
throw_allocator.h | 99 init(unsigned long seed); 287 twister_rand_gen(unsigned int seed) : _M_generator(seed) { } 291 init(unsigned int seed) 292 { _M_generator.seed(seed); } 320 throw_allocator_base::init(unsigned long seed) 321 { _S_g.init(seed); }
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/ |
throw_allocator.h | 99 init(unsigned long seed); 287 twister_rand_gen(unsigned int seed) : _M_generator(seed) { } 291 init(unsigned int seed) 292 { _M_generator.seed(seed); } 320 throw_allocator_base::init(unsigned long seed) 321 { _S_g.init(seed); }
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
_random.so | |
/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/openssl/crypto/ec/ |
ec_asn1.c | 170 ASN1_BIT_STRING *seed; member in struct:x9_62_curve_st 241 ASN1_OPT(X9_62_CURVE, seed, ASN1_BIT_STRING) 532 /* set the seed (optional) */ 533 if (group->seed) 535 if (!curve->seed) 536 if ((curve->seed = ASN1_BIT_STRING_new()) == NULL) 541 curve->seed->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07); 542 curve->seed->flags |= ASN1_STRING_FLAG_BITS_LEFT; 543 if (!ASN1_BIT_STRING_set(curve->seed, group->seed, [all...] |
/external/opencv/cv/src/ |
cvfloodfill.cpp | 95 icvFloodFill_8u_CnIR( uchar* pImage, int step, CvSize roi, CvPoint seed, 99 uchar* img = pImage + step * seed.y; 104 int XMin, XMax, YMin = seed.y, YMax = seed.y; 108 L = R = XMin = XMax = seed.x; 140 ICV_PUSH( seed.y, L, R, R + 1, R, UP ); 227 icvFloodFill_32f_CnIR( int* pImage, int step, CvSize roi, CvPoint seed, 231 int* img = pImage + (step /= sizeof(pImage[0])) * seed.y; 236 int XMin, XMax, YMin = seed.y, YMax = seed.y [all...] |
/external/deqp/modules/glshared/ |
glsVertexArrayTests.cpp | [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
RsPackColorTo8888Test.java | 68 private void float3input(long seed, int testId) { 74 RSUtils.genRandomFloats(seed, 0.0f, 1.0f, inArray, false); 95 private void float4input(long seed, int testId) { 101 RSUtils.genRandomFloats(seed, 0.0f, 1.0f, inArray, false);
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
RandomImpl.java | 34 protected void engineSetSeed(byte[] seed) {
|
/external/chromium_org/chrome/browser/metrics/variations/ |
variations_request_scheduler.cc | 17 // Time between regular seed fetches, in hours.
|
variations_request_scheduler_mobile.h | 44 // The time the last seed request was initiated.
|
/external/chromium_org/chrome/browser/prefs/ |
pref_hash_calculator.cc | 95 PrefHashCalculator::PrefHashCalculator(const std::string& seed, 97 : seed_(seed), 103 const std::string& seed, 106 : seed_(seed),
|
/external/chromium_org/chrome/renderer/ |
playback_extension.h | 21 // (rather than a constant seed followed by constant change)
|
/external/chromium_org/chrome/tools/profile_reset/ |
jtl_compiler_frontend.cc | 11 // jtl_compiler --input=blah.txt --hash-seed="foobar" --output=blah.dat 29 // Command-line argument name: the hash seed to use. 30 const char kHashSeed[] = "hash-seed"; 75 << "\t\tThe hash seed to use." << std::endl;
|
/external/chromium_org/components/rappor/ |
bloom_filter.h | 41 // A number add to a hash function index to get a seed for that hash function.
|