Searched refs:seed (Results 226 - 250 of 689) sorted by relevance

1234567891011>>

/external/deqp/modules/glshared/
H A DglsRandomUniformBlockCase.hpp75 deUint32 seed);
/external/fio/lib/
H A Dlfsr.c220 int lfsr_reset(struct fio_lfsr *fl, unsigned long seed) argument
225 fl->last_val = seed & bitmask;
234 int lfsr_init(struct fio_lfsr *fl, uint64_t nums, unsigned long seed, argument
250 if (lfsr_reset(fl, seed))
/external/freetype/src/psaux/
H A Dpsconv.h63 FT_UShort* seed );
/external/guava/guava/src/com/google/common/hash/
H A DHashing.java70 * algorithm</a> (little-endian variant), using the given seed value.
72 public static HashFunction murmur3_32(int seed) { argument
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) { argument
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/
H A DRandomNumberGenerator.cpp28 Seed("rng-seed", cl::value_desc("seed"),
37 // Combine seed and salt using std::seed_seq.
55 Generator.seed(SeedSeq);
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dpsconv.h66 FT_UShort* seed );
/external/regex-re2/re2/testing/
H A Dregexp_generator.h38 void GenerateRandom(int32 seed, int n);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Drandgen.h46 UniformArcSelector(int seed = time(0)) { srand(seed); }
67 LogProbArcSelector(int seed = time(0)) { srand(seed); }
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256.h24 const char *label, const u8 *seed, size_t seed_len,
/external/wpa_supplicant_8/src/crypto/
H A Dsha256.h24 const char *label, const u8 *seed, size_t seed_len,
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256.h24 const char *label, const u8 *seed, size_t seed_len,
/external/chromium_org/printing/
H A Dpage_setup_unittest.cc15 time_t seed = time(NULL); local
17 srand(static_cast<unsigned>(seed));
72 EXPECT_EQ(page_size, setup.physical_size()) << seed << " " <<
75 EXPECT_EQ(overlay_area, setup.overlay_area()) << seed << " " <<
78 EXPECT_EQ(content_area, setup.content_area()) << seed << " " <<
83 seed << " " << page_size.ToString() << " " << printable_area.ToString() <<
86 seed << " " << page_size.ToString() << " " << printable_area.ToString() <<
88 EXPECT_EQ(effective_margins.left, setup.effective_margins().left) << seed <<
91 EXPECT_EQ(effective_margins.top, setup.effective_margins().top) << seed <<
94 EXPECT_EQ(effective_margins.right, setup.effective_margins().right) << seed <<
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/
H A Dpi_generator.cc73 unsigned int seed = 1; local
74 srand(seed);
/external/chromium_org/third_party/skia/src/core/
H A DSkChecksum.h61 * @param seed Initial hash seed. (optional)
64 static uint32_t Murmur3(const uint32_t* data, size_t bytes, uint32_t seed=0) { argument
74 uint32_t hash = seed;
/external/skia/include/core/
H A DSkChecksum.h47 * @param seed Initial hash seed. (optional)
50 static uint32_t Murmur3(const uint32_t* data, size_t bytes, uint32_t seed=0) { argument
54 uint32_t hash = seed;
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_cache_perftest.cc150 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
151 srand(seed);
181 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
182 srand(seed);
232 int seed = static_cast<int>(Time::Now().ToInternalValue()); local
233 srand(seed);
/external/chromium_org/third_party/boringssl/src/crypto/dsa/
H A Ddsa_test.c71 /* seed, out_p, out_q, out_g are taken from the updated Appendix 5 to
73 static unsigned char seed[20] = {0xd5, 0x01, 0x4e, 0x4b, 0x60, 0xef, 0x2b, variable
121 !DSA_generate_parameters_ex(dsa, 512, seed, 20, &counter, &h, &cb)) {
125 BIO_printf(bio_out, "seed\n");
127 BIO_printf(bio_out, "%02X%02X%02X%02X ", seed[i], seed[i + 1], seed[i + 2],
128 seed[i + 3]);
/external/chromium_org/third_party/opus/src/silk/
H A DCNG.c44 opus_int32 seed; local
52 seed = *rand_seed;
54 seed = silk_RAND( seed );
55 idx = (opus_int)( silk_RSHIFT( seed, 24 ) & exc_mask );
60 *rand_seed = seed;
/external/chromium_org/third_party/skia/gm/
H A Dperlinnoise.cpp37 float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed,
42 seed, stitchTiles ? &tileSize : NULL) :
44 seed, stitchTiles ? &tileSize : NULL);
111 float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed,
115 seed, stitchTiles ? &fSize : NULL) :
117 seed, stitchTiles ? &fSize : NULL);
36 test(SkCanvas* canvas, int x, int y, SkPerlinNoiseShader::Type type, float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stitchTiles) argument
110 install(SkPaint* paint, SkPerlinNoiseShader::Type type, float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stitchTiles) argument
/external/fio/os/
H A Dos-android.h190 static inline void os_random_seed(unsigned long seed, os_random_state_t *rs) argument
192 rs->r[0] = seed & 0xffff;
193 seed >>= 16;
194 rs->r[1] = seed & 0xffff;
195 seed >>= 16;
196 rs->r[2] = seed & 0xffff;
/external/libopus/silk/
H A DCNG.c44 opus_int32 seed; local
52 seed = *rand_seed;
54 seed = silk_RAND( seed );
55 idx = (opus_int)( silk_RSHIFT( seed, 24 ) & exc_mask );
60 *rand_seed = seed;
/external/openssl/crypto/dsa/
H A Ddsatest.c96 /* 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/skia/gm/
H A Dperlinnoise.cpp37 float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed,
42 seed, stitchTiles ? &tileSize : NULL) :
44 seed, stitchTiles ? &tileSize : NULL);
111 float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed,
115 seed, stitchTiles ? &fSize : NULL) :
117 seed, stitchTiles ? &fSize : NULL);
36 test(SkCanvas* canvas, int x, int y, SkPerlinNoiseShader::Type type, float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stitchTiles) argument
110 install(SkPaint* paint, SkPerlinNoiseShader::Type type, float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stitchTiles) argument
/external/deqp/modules/gles3/functional/
H A Des3fLifetimeTests.cpp214 void initAttachment (GLuint seed, GLuint element);
232 void initBuffer (const Functions& gl, GLuint seed, GLenum usage, GLuint buffer) argument
235 if (seed == 0)
239 Random rnd (seed);
257 void BufferVAOAttacher::initAttachment (GLuint seed, GLuint buffer) argument
259 initBuffer(gl(), seed, GL_STATIC_DRAW, buffer); local
260 log() << TestLog::Message << "// Initialized buffer " << buffer << " from seed " << seed
312 void initAttachment (GLuint seed, GLuint element);
319 void BufferTfAttacher::initAttachment (GLuint seed, GLuin argument
321 initBuffer(gl(), seed, GL_DYNAMIC_READ, buffer); local
378 setupContainer(GLuint seed, GLuint tf) argument
383 initBuffer(gl(), seed, GL_STATIC_DRAW, *posBuf); local
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java547 long seed = new Random().nextLong();
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);
588 assertEquals("Using seed " + seed, expected, elements);
599 long seed
[all...]

Completed in 9133 milliseconds

1234567891011>>